From 5f31933e5c8f5a9d08f9c940fd6f22a2617a10fa Mon Sep 17 00:00:00 2001 From: Doug Newman Date: Mon, 14 Aug 2023 12:48:09 -0400 Subject: [PATCH 1/9] Added vcr tests --- .DS_Store | Bin 0 -> 6148 bytes .gitignore | 3 +- cmr/queries.py | 20 +- fixtures/.DS_Store | Bin 0 -> 6148 bytes fixtures/vcr_cassettes/.DS_Store | Bin 0 -> 6148 bytes fixtures/vcr_cassettes/MOD02QKM.yaml | 18136 +++++++++++++++++++++++++ poetry.lock | 367 +- pyproject.toml | 4 + tests/test_multiple_queries.py | 45 + 9 files changed, 18557 insertions(+), 18 deletions(-) create mode 100644 .DS_Store create mode 100644 fixtures/.DS_Store create mode 100644 fixtures/vcr_cassettes/.DS_Store create mode 100644 fixtures/vcr_cassettes/MOD02QKM.yaml create mode 100644 tests/test_multiple_queries.py diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..42353c9b8dc38a563800c793cde7ddbca289359e GIT binary patch literal 6148 zcmeHK%}N6?5T4koDMjc(p~ryNg8f4(UY4pa;EEnp>MpIixNfAowL&TESzpK}@p+s{ zvS4Wso>j$*=`b0|1GQP>`}h$h^|E=7I@@nPUQD7(p6N)29^^ z{YDdgyM$Ya-~}@H^8I0~L-f6ePjQrH&E|(#E0xzbHsz+Q%4`2#PyH;&CTTwyU()DI z>o_d*AUuyo(?M3R>pbU%EjYFnAOp)OgIS7BKOPyGqA`&$qs9D z{-5A4v+|L@n8G7wfEoB>42bfvf858S+}XNR9-Xxc+YL4nipxnsL4Dy8fCJh`>c(mP bigb+g9Of2j7P6akM7{_ZLbziFet>~bE@@3< literal 0 HcmV?d00001 diff --git a/.gitignore b/.gitignore index d9b5c9d..6aeee23 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ venv/ tags .venv *.egg-info -dist \ No newline at end of file +dist +.vscode/* \ No newline at end of file diff --git a/cmr/queries.py b/cmr/queries.py index 04412ad..46d9a65 100644 --- a/cmr/queries.py +++ b/cmr/queries.py @@ -51,10 +51,15 @@ def get(self, limit=2000): url = self._build_url() results = [] - page = 1 - while len(results) < limit: + more_results = True + while more_results == True: - response = get(url, headers=self.headers, params={'page_size': page_size, 'page_num': page}) + # Only get what we need + page_size = min(limit - len(results), page_size) + response = get(url, headers=self.headers, params={'page_size': page_size}) + if self.headers == None: + self.headers = {} + self.headers['cmr-search-after'] = response.headers['cmr-search-after'] try: response.raise_for_status() @@ -65,12 +70,11 @@ def get(self, limit=2000): latest = response.json()['feed']['entry'] else: latest = [response.text] - - if len(latest) == 0: - break - + results.extend(latest) - page += 1 + + if page_size > len(response.json()['feed']['entry']) or len(results) >= limit: + more_results = False return results diff --git a/fixtures/.DS_Store b/fixtures/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..024acee5bf7ab531b6e7fb33dbdaa76c4da89bee GIT binary patch literal 6148 zcmeHK!Ab)$5S`SjTS}n^g&qT53$|87@v>C?0ax^(Qg_`&7uQYcZrejC>{)-vFY$Yv zNwSJmJ$Mi)GiBx_lbM9Pl*|SIM1LH10h$2dpb}PUXuc2{CtZ+=^$-d@$1V7f;V*)G zA(|ckkpVip229`=^;5?3|gXYGON^?I>qmfRC!w5sJF5)y))4m#~VWx9EGvL&m z+MwB*&APq)w%pm>pSR`gV5ifTyS=^nyyk3fZ6BTv9+JmYJsDaB{sXl%ESB($jURS6 z@kVK)(mRYQXDBlnnE_^i8CX^Z?0x6dmvw`@FJ^!l_%#D`KS)$U*J5E%Uma-Z^O44@ zge2Iew*;ZI=vpic;s}Z`sfZ?3*e8ZC>FAd>&b3$=H0dDp$~cc*S=bkf(5s_g>TnRQ zLAJ~QGw_*#71M1}{XhBs{r@?Md&~ecuv83)>alm+$1T~~y0AH_wG#CPm4xC7gYPNW i(4`n-sT8+RwV+>81JSiu7(@>We+XzA*f0Zs%D@}a_E2{K literal 0 HcmV?d00001 diff --git a/fixtures/vcr_cassettes/.DS_Store b/fixtures/vcr_cassettes/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0=3.56)", "mock", "nose", "requests", "xmlschema"] +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + [[package]] name = "requests" version = "2.31.0" @@ -287,6 +419,36 @@ urllib3 = ">=1.21.1,<3" socks = ["PySocks (>=1.5.6,!=1.5.7)"] use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] +[[package]] +name = "requests-mock" +version = "1.11.0" +description = "Mock out responses from the requests package" +optional = false +python-versions = "*" +files = [ + {file = "requests-mock-1.11.0.tar.gz", hash = "sha256:ef10b572b489a5f28e09b708697208c4a3b2b89ef80a9f01584340ea357ec3c4"}, + {file = "requests_mock-1.11.0-py2.py3-none-any.whl", hash = "sha256:f7fae383f228633f6bececebdab236c478ace2284d6292c6e7e2867b9ab74d15"}, +] + +[package.dependencies] +requests = ">=2.3,<3" +six = "*" + +[package.extras] +fixture = ["fixtures"] +test = ["fixtures", "mock", "purl", "pytest", "requests-futures", "sphinx", "testtools"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + [[package]] name = "toml" version = "0.10.2" @@ -300,22 +462,209 @@ files = [ [[package]] name = "urllib3" -version = "2.0.4" +version = "1.26.16" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false -python-versions = ">=3.7" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ - {file = "urllib3-2.0.4-py3-none-any.whl", hash = "sha256:de7df1803967d2c2a98e4b11bb7d6bd9210474c46e8a0401514e3a42a75ebde4"}, - {file = "urllib3-2.0.4.tar.gz", hash = "sha256:8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11"}, + {file = "urllib3-1.26.16-py2.py3-none-any.whl", hash = "sha256:8d36afa7616d8ab714608411b4a3b13e58f463aee519024578e062e141dce20f"}, + {file = "urllib3-1.26.16.tar.gz", hash = "sha256:8f135f6502756bde6b2a9b28989df5fbe87c9970cecaa69041edcce7f0589b14"}, ] [package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "vcrpy" +version = "5.1.0" +description = "Automatically mock your HTTP interactions to simplify and speed up testing" +optional = false +python-versions = ">=3.8" +files = [ + {file = "vcrpy-5.1.0-py2.py3-none-any.whl", hash = "sha256:605e7b7a63dcd940db1df3ab2697ca7faf0e835c0852882142bafb19649d599e"}, + {file = "vcrpy-5.1.0.tar.gz", hash = "sha256:bbf1532f2618a04f11bce2a99af3a9647a32c880957293ff91e0a5f187b6b3d2"}, +] + +[package.dependencies] +PyYAML = "*" +urllib3 = {version = "<2", markers = "python_version < \"3.10\""} +wrapt = "*" +yarl = "*" + +[[package]] +name = "wrapt" +version = "1.15.0" +description = "Module for decorators, wrappers and monkey patching." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ + {file = "wrapt-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ca1cccf838cd28d5a0883b342474c630ac48cac5df0ee6eacc9c7290f76b11c1"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e826aadda3cae59295b95343db8f3d965fb31059da7de01ee8d1c40a60398b29"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5fc8e02f5984a55d2c653f5fea93531e9836abbd84342c1d1e17abc4a15084c2"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:96e25c8603a155559231c19c0349245eeb4ac0096fe3c1d0be5c47e075bd4f46"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:40737a081d7497efea35ab9304b829b857f21558acfc7b3272f908d33b0d9d4c"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:f87ec75864c37c4c6cb908d282e1969e79763e0d9becdfe9fe5473b7bb1e5f09"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:1286eb30261894e4c70d124d44b7fd07825340869945c79d05bda53a40caa079"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:493d389a2b63c88ad56cdc35d0fa5752daac56ca755805b1b0c530f785767d5e"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:58d7a75d731e8c63614222bcb21dd992b4ab01a399f1f09dd82af17bbfc2368a"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:21f6d9a0d5b3a207cdf7acf8e58d7d13d463e639f0c7e01d82cdb671e6cb7923"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce42618f67741d4697684e501ef02f29e758a123aa2d669e2d964ff734ee00ee"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41d07d029dd4157ae27beab04d22b8e261eddfc6ecd64ff7000b10dc8b3a5727"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54accd4b8bc202966bafafd16e69da9d5640ff92389d33d28555c5fd4f25ccb7"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fbfbca668dd15b744418265a9607baa970c347eefd0db6a518aaf0cfbd153c0"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:76e9c727a874b4856d11a32fb0b389afc61ce8aaf281ada613713ddeadd1cfec"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e20076a211cd6f9b44a6be58f7eeafa7ab5720eb796975d0c03f05b47d89eb90"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a74d56552ddbde46c246b5b89199cb3fd182f9c346c784e1a93e4dc3f5ec9975"}, + {file = "wrapt-1.15.0-cp310-cp310-win32.whl", hash = "sha256:26458da5653aa5b3d8dc8b24192f574a58984c749401f98fff994d41d3f08da1"}, + {file = "wrapt-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:75760a47c06b5974aa5e01949bf7e66d2af4d08cb8c1d6516af5e39595397f5e"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba1711cda2d30634a7e452fc79eabcadaffedf241ff206db2ee93dd2c89a60e7"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56374914b132c702aa9aa9959c550004b8847148f95e1b824772d453ac204a72"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a89ce3fd220ff144bd9d54da333ec0de0399b52c9ac3d2ce34b569cf1a5748fb"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3bbe623731d03b186b3d6b0d6f51865bf598587c38d6f7b0be2e27414f7f214e"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3abbe948c3cbde2689370a262a8d04e32ec2dd4f27103669a45c6929bcdbfe7c"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b67b819628e3b748fd3c2192c15fb951f549d0f47c0449af0764d7647302fda3"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7eebcdbe3677e58dd4c0e03b4f2cfa346ed4049687d839adad68cc38bb559c92"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:74934ebd71950e3db69960a7da29204f89624dde411afbfb3b4858c1409b1e98"}, + {file = "wrapt-1.15.0-cp311-cp311-win32.whl", hash = "sha256:bd84395aab8e4d36263cd1b9308cd504f6cf713b7d6d3ce25ea55670baec5416"}, + {file = "wrapt-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:a487f72a25904e2b4bbc0817ce7a8de94363bd7e79890510174da9d901c38705"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:4ff0d20f2e670800d3ed2b220d40984162089a6e2c9646fdb09b85e6f9a8fc29"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9ed6aa0726b9b60911f4aed8ec5b8dd7bf3491476015819f56473ffaef8959bd"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:896689fddba4f23ef7c718279e42f8834041a21342d95e56922e1c10c0cc7afb"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:75669d77bb2c071333417617a235324a1618dba66f82a750362eccbe5b61d248"}, + {file = "wrapt-1.15.0-cp35-cp35m-win32.whl", hash = "sha256:fbec11614dba0424ca72f4e8ba3c420dba07b4a7c206c8c8e4e73f2e98f4c559"}, + {file = "wrapt-1.15.0-cp35-cp35m-win_amd64.whl", hash = "sha256:fd69666217b62fa5d7c6aa88e507493a34dec4fa20c5bd925e4bc12fce586639"}, + {file = "wrapt-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b0724f05c396b0a4c36a3226c31648385deb6a65d8992644c12a4963c70326ba"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbeccb1aa40ab88cd29e6c7d8585582c99548f55f9b2581dfc5ba68c59a85752"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38adf7198f8f154502883242f9fe7333ab05a5b02de7d83aa2d88ea621f13364"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:578383d740457fa790fdf85e6d346fda1416a40549fe8db08e5e9bd281c6a475"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:a4cbb9ff5795cd66f0066bdf5947f170f5d63a9274f99bdbca02fd973adcf2a8"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:af5bd9ccb188f6a5fdda9f1f09d9f4c86cc8a539bd48a0bfdc97723970348418"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b56d5519e470d3f2fe4aa7585f0632b060d532d0696c5bdfb5e8319e1d0f69a2"}, + {file = "wrapt-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:77d4c1b881076c3ba173484dfa53d3582c1c8ff1f914c6461ab70c8428b796c1"}, + {file = "wrapt-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:077ff0d1f9d9e4ce6476c1a924a3332452c1406e59d90a2cf24aeb29eeac9420"}, + {file = "wrapt-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5c5aa28df055697d7c37d2099a7bc09f559d5053c3349b1ad0c39000e611d317"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a8564f283394634a7a7054b7983e47dbf39c07712d7b177b37e03f2467a024e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780c82a41dc493b62fc5884fb1d3a3b81106642c5c5c78d6a0d4cbe96d62ba7e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e169e957c33576f47e21864cf3fc9ff47c223a4ebca8960079b8bd36cb014fd0"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b02f21c1e2074943312d03d243ac4388319f2456576b2c6023041c4d57cd7019"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f2e69b3ed24544b0d3dbe2c5c0ba5153ce50dcebb576fdc4696d52aa22db6034"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d787272ed958a05b2c86311d3a4135d3c2aeea4fc655705f074130aa57d71653"}, + {file = "wrapt-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:02fce1852f755f44f95af51f69d22e45080102e9d00258053b79367d07af39c0"}, + {file = "wrapt-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:abd52a09d03adf9c763d706df707c343293d5d106aea53483e0ec8d9e310ad5e"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdb4f085756c96a3af04e6eca7f08b1345e94b53af8921b25c72f096e704e145"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:230ae493696a371f1dbffaad3dafbb742a4d27a0afd2b1aecebe52b740167e7f"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63424c681923b9f3bfbc5e3205aafe790904053d42ddcc08542181a30a7a51bd"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6bcbfc99f55655c3d93feb7ef3800bd5bbe963a755687cbf1f490a71fb7794b"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c99f4309f5145b93eca6e35ac1a988f0dc0a7ccf9ccdcd78d3c0adf57224e62f"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b130fe77361d6771ecf5a219d8e0817d61b236b7d8b37cc045172e574ed219e6"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:96177eb5645b1c6985f5c11d03fc2dbda9ad24ec0f3a46dcce91445747e15094"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5fe3e099cf07d0fb5a1e23d399e5d4d1ca3e6dfcbe5c8570ccff3e9208274f7"}, + {file = "wrapt-1.15.0-cp38-cp38-win32.whl", hash = "sha256:abd8f36c99512755b8456047b7be10372fca271bf1467a1caa88db991e7c421b"}, + {file = "wrapt-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:b06fa97478a5f478fb05e1980980a7cdf2712015493b44d0c87606c1513ed5b1"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2e51de54d4fb8fb50d6ee8327f9828306a959ae394d3e01a1ba8b2f937747d86"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0970ddb69bba00670e58955f8019bec4a42d1785db3faa043c33d81de2bf843c"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76407ab327158c510f44ded207e2f76b657303e17cb7a572ffe2f5a8a48aa04d"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd525e0e52a5ff16653a3fc9e3dd827981917d34996600bbc34c05d048ca35cc"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d37ac69edc5614b90516807de32d08cb8e7b12260a285ee330955604ed9dd29"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:078e2a1a86544e644a68422f881c48b84fef6d18f8c7a957ffd3f2e0a74a0d4a"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2cf56d0e237280baed46f0b5316661da892565ff58309d4d2ed7dba763d984b8"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7dc0713bf81287a00516ef43137273b23ee414fe41a3c14be10dd95ed98a2df9"}, + {file = "wrapt-1.15.0-cp39-cp39-win32.whl", hash = "sha256:46ed616d5fb42f98630ed70c3529541408166c22cdfd4540b88d5f21006b0eff"}, + {file = "wrapt-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:eef4d64c650f33347c1f9266fa5ae001440b232ad9b98f1f43dfe7a79435c0a6"}, + {file = "wrapt-1.15.0-py3-none-any.whl", hash = "sha256:64b1df0f83706b4ef4cfb4fb0e4c2669100fd7ecacfb59e091fad300d4e04640"}, + {file = "wrapt-1.15.0.tar.gz", hash = "sha256:d06730c6aed78cee4126234cf2d071e01b44b915e725a6cb439a879ec9754a3a"}, +] + +[[package]] +name = "yarl" +version = "1.9.2" +description = "Yet another URL library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528"}, + {file = "yarl-1.9.2-cp310-cp310-win32.whl", hash = "sha256:8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3"}, + {file = "yarl-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a"}, + {file = "yarl-1.9.2-cp311-cp311-win32.whl", hash = "sha256:a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8"}, + {file = "yarl-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051"}, + {file = "yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582"}, + {file = "yarl-1.9.2-cp37-cp37m-win32.whl", hash = "sha256:f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b"}, + {file = "yarl-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b"}, + {file = "yarl-1.9.2-cp38-cp38-win32.whl", hash = "sha256:f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7"}, + {file = "yarl-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80"}, + {file = "yarl-1.9.2-cp39-cp39-win32.whl", hash = "sha256:b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623"}, + {file = "yarl-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18"}, + {file = "yarl-1.9.2.tar.gz", hash = "sha256:04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "61e8c9a85fbe3a8ea28ae11028901f73c98abb6db8d1541d2206d0f963a27d28" +content-hash = "0c8d442593a5b983bfea705eb0f0eda1dffa06a48c4437f98f7b5d7993cdf7e3" diff --git a/pyproject.toml b/pyproject.toml index d92ccab..f88a85c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,10 @@ requests = "^2.26.0" flake8 = "^4.0.1" pytest = "^6.2.5" +[tool.poetry.group.dev.dependencies] +requests-mock = "^1.11.0" +vcrpy = "^5.1.0" + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/tests/test_multiple_queries.py b/tests/test_multiple_queries.py new file mode 100644 index 0000000..b9330d2 --- /dev/null +++ b/tests/test_multiple_queries.py @@ -0,0 +1,45 @@ +import unittest +import requests_mock +import json + +import vcr +import urllib.request + +from cmr.queries import GranuleQuery + +my_vcr = vcr.VCR( + record_mode='once', + decode_compressed_response=True, + match_on=['method', 'scheme', 'host', 'port', 'path', 'query', 'headers'] +) + +class TestMultipleQueries(unittest.TestCase): + + def test_get_some(self): + with my_vcr.use_cassette('fixtures/vcr_cassettes/MOD02QKM.yaml') as cass: + api = GranuleQuery() + + granules = api.short_name("MOD02QKM").get(3000) + self.assertEqual(len(granules), 3000) + self.assertEqual(len(cass), 2) + ''' + def test_get_limit_many(self): + api = GranuleQuery() + granules = api.short_name("MOD02QKM").get() + self.assertEqual(len(granules), 2000) + + @vcr.use_cassette('fixtures/vcr_cassettes/MOD02QKM_150.yaml') + def test_get_limit_some(self): + api = GranuleQuery() + granules = api.short_name("MOD02QKM").get() + self.assertEqual(len(granules), 150) + + def test_get_all_mutiple_pages(self): + api = GranuleQuery() + granules = api.short_name("MOD02QKM").get_all() + self.assertEqual(len(granules), 3050) + + def test_get_all_mutiple_pages(self): + api = GranuleQuery() + granules = api.short_name("MOD02QKM").get_all() + self.assertEqual(len(granules), 3050)''' From 83a4902290f4d732f55b9cf1cbe28bc19d82991b Mon Sep 17 00:00:00 2001 From: Doug Newman Date: Mon, 14 Aug 2023 13:18:16 -0400 Subject: [PATCH 2/9] Added uniquess test --- fixtures/vcr_cassettes/CYGNSS.yaml | 20399 ++++++++++++++++++++ fixtures/vcr_cassettes/MOD02QKM_2000.yaml | 12068 ++++++++++++ fixtures/vcr_cassettes/TELLUS_GRAC.yaml | 2088 ++ tests/test_multiple_queries.py | 84 +- 4 files changed, 34618 insertions(+), 21 deletions(-) create mode 100644 fixtures/vcr_cassettes/CYGNSS.yaml create mode 100644 fixtures/vcr_cassettes/MOD02QKM_2000.yaml create mode 100644 fixtures/vcr_cassettes/TELLUS_GRAC.yaml diff --git a/fixtures/vcr_cassettes/CYGNSS.yaml b/fixtures/vcr_cassettes/CYGNSS.yaml new file mode 100644 index 0000000..8d2876f --- /dev/null +++ b/fixtures/vcr_cassettes/CYGNSS.yaml @@ -0,0 +1,20399 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://cmr.earthdata.nasa.gov/search/granules.json?short_name=CYGNSS_NOAA_L2_SWSP_25KM_V1.2&page_size=0 + response: + body: + string: '{"feed":{"updated":"2023-08-14T17:02:43.878Z","id":"https://cmr.earthdata.nasa.gov:443/search/granules.json?short_name=CYGNSS_NOAA_L2_SWSP_25KM_V1.2&page_size=0","title":"ECHO + granule metadata","entry":[]}}' + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - CMR-Hits, CMR-Request-Id, X-Request-Id, CMR-Scroll-Id, CMR-Search-After, CMR-Timed-Out, + CMR-Shapefile-Original-Point-Count, CMR-Shapefile-Simplified-Point-Count + CMR-Hits: + - '2285' + CMR-Request-Id: + - 95542032-03c2-4f9b-9dd4-a9831f4e8d50 + CMR-Took: + - '91' + Connection: + - keep-alive + Content-Type: + - application/json;charset=utf-8 + Date: + - Mon, 14 Aug 2023 17:02:43 GMT + Server: + - ServerTokens ProductOnly + Strict-Transport-Security: + - max-age=31536000 + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding, User-Agent + Via: + - 1.1 1d07855a178a7ad07a8bd34ed25f09cc.cloudfront.net (CloudFront) + X-Amz-Cf-Id: + - 003OwOvyNLsXnSi5Sr_oCLIictNyLpCghIXvvU7EF452aYCyd14ptg== + X-Amz-Cf-Pop: + - SFO53-C1 + X-Cache: + - Miss from cloudfront + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Request-Id: + - 003OwOvyNLsXnSi5Sr_oCLIictNyLpCghIXvvU7EF452aYCyd14ptg== + X-XSS-Protection: + - 1; mode=block + content-length: + - '206' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://cmr.earthdata.nasa.gov/search/granules.json?short_name=CYGNSS_NOAA_L2_SWSP_25KM_V1.2&page_size=2000 + response: + body: + string: '{"feed":{"updated":"2023-08-14T17:02:46.485Z","id":"https://cmr.earthdata.nasa.gov:443/search/granules.json?short_name=CYGNSS_NOAA_L2_SWSP_25KM_V1.2&page_size=2000","title":"ECHO + granule metadata","entry":[{"boxes":["-37.924 0.002 37.84 180","-37.924 -180 + 37.84 -0.004"],"time_start":"2017-05-01T00:00:02.000Z","updated":"2022-05-24T00:04:25.705Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-01T23:59:59.000Z","id":"G2276682432-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170501-000002-e20170501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.82 + 0.001 37.846 180","-37.82 -180 37.846 -0.003"],"time_start":"2017-05-02T00:00:02.000Z","updated":"2022-05-24T00:42:30.696Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-02T23:59:59.000Z","id":"G2276689966-POCLOUD","original_format":"UMM_JSON","granule_size":"9.095362663269043","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170502-000002-e20170502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.815 + 0.002 37.869 180","-37.815 -180 37.869 -0.006"],"time_start":"2017-05-03T00:00:00.000Z","updated":"2022-05-24T00:30:30.617Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-03T23:59:59.000Z","id":"G2276687919-POCLOUD","original_format":"UMM_JSON","granule_size":"8.174601554870605","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170503-000000-e20170503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.749 + 0.003 39.057 180","-37.749 -180 39.057 -0.006"],"time_start":"2017-05-04T00:00:02.000Z","updated":"2022-05-24T00:16:25.079Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-04T23:59:59.000Z","id":"G2276685039-POCLOUD","original_format":"UMM_JSON","granule_size":"6.584470748901367","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170504-000002-e20170504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.845 + 0.004 38.026 180","-37.845 -180 38.026 -0.007"],"time_start":"2017-05-05T00:00:02.000Z","updated":"2022-05-24T00:17:33.732Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-05T23:59:59.000Z","id":"G2276685265-POCLOUD","original_format":"UMM_JSON","granule_size":"8.04568862915039","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170505-000002-e20170505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.792 + 0.001 37.953 180","-37.792 -180 37.953 -0.001"],"time_start":"2017-05-06T00:00:01.000Z","updated":"2022-05-24T00:13:27.268Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-06T23:59:58.000Z","id":"G2276684573-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170506-000001-e20170506-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.892 + 0.006 37.74 180","-37.892 -180 37.74 -0.002"],"time_start":"2017-05-07T00:00:02.000Z","updated":"2022-05-23T23:59:24.358Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-07T23:59:59.000Z","id":"G2276681314-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170507-000002-e20170507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.011 + 0.002 37.67 180","-38.011 -180 37.67 -0.004"],"time_start":"2017-05-08T00:00:01.000Z","updated":"2022-05-23T23:48:22.447Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-08T23:59:59.000Z","id":"G2276678819-POCLOUD","original_format":"UMM_JSON","granule_size":"9.154370307922363","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170508-000001-e20170508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.924 + 0.005 37.633 180","-37.924 -180 37.633 -0.003"],"time_start":"2017-05-09T00:00:01.000Z","updated":"2022-05-23T23:55:25.639Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-09T23:59:57.000Z","id":"G2276680416-POCLOUD","original_format":"UMM_JSON","granule_size":"9.42755126953125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170509-000001-e20170509-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.689 + 0 37.639 180","-37.689 -180 37.639 -0.003"],"time_start":"2017-05-10T00:00:02.000Z","updated":"2022-05-23T23:56:26.682Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-10T23:59:59.000Z","id":"G2276680497-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170510-000002-e20170510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0.002 37.679 180","-37.565 -180 37.679 -0.003"],"time_start":"2017-05-11T00:00:01.000Z","updated":"2022-05-24T00:33:27.752Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-11T23:59:58.000Z","id":"G2276688627-POCLOUD","original_format":"UMM_JSON","granule_size":"6.30100154876709","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170511-000001-e20170511-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.516 + 0.002 37.728 180","-37.516 -180 37.728 0"],"time_start":"2017-05-12T00:00:02.000Z","updated":"2022-05-24T00:35:36.636Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-12T23:59:59.000Z","id":"G2276688811-POCLOUD","original_format":"UMM_JSON","granule_size":"13.82110595703125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170512-000002-e20170512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0.003 37.686 180","-37.636 -180 37.686 -0.001"],"time_start":"2017-05-13T00:00:01.000Z","updated":"2022-05-24T00:16:25.968Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-13T23:59:59.000Z","id":"G2276685041-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170513-000001-e20170513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.714 + 0.002 37.487 180","-37.714 -180 37.487 -0.003"],"time_start":"2017-05-14T00:00:02.000Z","updated":"2022-05-24T00:34:55.136Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-14T23:59:59.000Z","id":"G2276688758-POCLOUD","original_format":"UMM_JSON","granule_size":"13.999654769897461","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170514-000002-e20170514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.68 + 0.001 37.505 180","-37.68 -180 37.505 0"],"time_start":"2017-05-15T00:00:01.000Z","updated":"2022-05-24T00:14:24.796Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-15T23:59:59.000Z","id":"G2276684706-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170515-000001-e20170515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.541 + 0.002 37.233 180","-37.541 -180 37.233 -0.001"],"time_start":"2017-05-16T00:00:02.000Z","updated":"2022-05-23T23:52:40.383Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-16T23:59:58.000Z","id":"G2276680277-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170516-000002-e20170516-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.64 + 0.001 37.846 180","-37.64 -180 37.846 -0.001"],"time_start":"2017-05-17T00:00:02.000Z","updated":"2022-05-24T00:14:29.763Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-17T23:59:59.000Z","id":"G2276684752-POCLOUD","original_format":"UMM_JSON","granule_size":"15.952773094177246","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170517-000002-e20170517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.774 + 0.001 37.465 180","-37.774 -180 37.465 -0.002"],"time_start":"2017-05-18T00:00:02.000Z","updated":"2022-05-23T23:49:26.796Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-18T23:59:59.000Z","id":"G2276679587-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170518-000002-e20170518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.845 + 0 37.716 180","-37.845 -180 37.716 -0.002"],"time_start":"2017-05-19T00:00:01.000Z","updated":"2022-05-24T00:35:27.934Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-19T23:59:59.000Z","id":"G2276688777-POCLOUD","original_format":"UMM_JSON","granule_size":"18.077123641967773","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170519-000001-e20170519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.723 + 0.001 37.677 180","-37.723 -180 37.677 0"],"time_start":"2017-05-20T00:00:01.000Z","updated":"2022-05-24T00:23:30.120Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-20T23:59:59.000Z","id":"G2276686681-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170520-000001-e20170520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.721 + 0.001 37.581 180","-37.721 -180 37.581 -0.001"],"time_start":"2017-05-21T00:00:00.000Z","updated":"2022-05-24T00:16:07.465Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-21T23:59:59.000Z","id":"G2276685026-POCLOUD","original_format":"UMM_JSON","granule_size":"18.77543067932129","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170521-000000-e20170521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.676 + 0.001 37.596 180","-37.676 -180 37.596 -0.003"],"time_start":"2017-05-22T00:00:02.000Z","updated":"2022-05-24T00:25:33.523Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-22T23:59:58.000Z","id":"G2276686990-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170522-000002-e20170522-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.866 + 0.001 37.532 180","-40.866 -180 37.532 -0.003"],"time_start":"2017-05-23T00:00:01.000Z","updated":"2022-05-24T00:21:32.773Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-23T23:59:59.000Z","id":"G2276685920-POCLOUD","original_format":"UMM_JSON","granule_size":"14.367548942565918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170523-000001-e20170523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.874 + 0 37.428 180","-39.874 -180 37.428 -0.001"],"time_start":"2017-05-24T00:00:01.000Z","updated":"2022-05-24T00:07:30.186Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-24T23:59:59.000Z","id":"G2276683365-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170524-000001-e20170524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.809 + 0 37.424 180","-39.809 -180 37.424 -0.001"],"time_start":"2017-05-25T00:00:01.000Z","updated":"2022-05-24T00:10:41.866Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-25T23:59:59.000Z","id":"G2276683781-POCLOUD","original_format":"UMM_JSON","granule_size":"13.192469596862793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170525-000001-e20170525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.032 + 0 37.603 180","-40.032 -180 37.603 -0.001"],"time_start":"2017-05-26T00:00:02.000Z","updated":"2022-05-24T00:39:22.775Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-26T23:59:59.000Z","id":"G2276689547-POCLOUD","original_format":"UMM_JSON","granule_size":"12.133872032165527","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170526-000002-e20170526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.458 + 0.004 37.291 180","-39.458 -180 37.291 -0.004"],"time_start":"2017-05-27T00:00:02.000Z","updated":"2022-05-24T00:04:48.510Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-27T23:59:59.000Z","id":"G2276682484-POCLOUD","original_format":"UMM_JSON","granule_size":"13.749055862426758","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170527-000002-e20170527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.199 + 0.002 37.406 180","-39.199 -180 37.406 -0.002"],"time_start":"2017-05-28T00:00:02.000Z","updated":"2022-05-23T23:56:31.940Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-28T23:59:59.000Z","id":"G2276680507-POCLOUD","original_format":"UMM_JSON","granule_size":"12.277966499328613","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170528-000002-e20170528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.105 + 0.002 37.446 180","-39.105 -180 37.446 -0.001"],"time_start":"2017-05-29T00:00:00.000Z","updated":"2022-05-24T00:38:58.830Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-29T23:59:59.000Z","id":"G2276689531-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170529-000000-e20170529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.501 + 0.002 37.498 180","-38.501 -180 37.498 -0.003"],"time_start":"2017-05-30T00:00:01.000Z","updated":"2022-05-24T00:02:24.877Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-30T23:59:59.000Z","id":"G2276681599-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170530-000001-e20170530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.647 + 0 37.614 180","-38.647 -180 37.614 -0.002"],"time_start":"2017-05-31T00:00:02.000Z","updated":"2022-05-24T00:17:39.420Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-31T23:59:59.000Z","id":"G2276685298-POCLOUD","original_format":"UMM_JSON","granule_size":"17.02136993408203","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170531-000002-e20170531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.418 + 0.001 37.76 180","-40.418 -180 37.76 0"],"time_start":"2017-06-01T00:00:01.000Z","updated":"2022-05-24T00:28:30.449Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-01T23:59:59.000Z","id":"G2276687715-POCLOUD","original_format":"UMM_JSON","granule_size":"17.82501792907715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170601-000001-e20170601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.001 37.703 180","-37.769 -180 37.703 -0.002"],"time_start":"2017-06-02T00:00:02.000Z","updated":"2022-05-24T00:29:31.515Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-02T23:59:59.000Z","id":"G2276687825-POCLOUD","original_format":"UMM_JSON","granule_size":"17.647038459777832","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170602-000002-e20170602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.742 + 0 37.889 180","-37.742 -180 37.889 -0.002"],"time_start":"2017-06-03T00:00:01.000Z","updated":"2022-05-24T00:27:35.026Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-03T23:59:59.000Z","id":"G2276687226-POCLOUD","original_format":"UMM_JSON","granule_size":"18.550150871276855","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170603-000001-e20170603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.79 + 0.004 38.029 180","-37.79 -180 38.029 -0.001"],"time_start":"2017-06-04T00:00:02.000Z","updated":"2022-05-24T00:03:32.829Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-04T23:59:59.000Z","id":"G2276682037-POCLOUD","original_format":"UMM_JSON","granule_size":"18.586522102355957","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170604-000002-e20170604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.925 + 0.002 38.03 180","-37.925 -180 38.03 0"],"time_start":"2017-06-05T00:00:00.000Z","updated":"2022-05-24T00:25:28.757Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-05T23:59:59.000Z","id":"G2276686976-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170605-000000-e20170605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.879 + 0.002 37.872 180","-37.879 -180 37.872 -0.001"],"time_start":"2017-06-06T00:00:01.000Z","updated":"2022-05-24T00:12:36.448Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-06T23:59:59.000Z","id":"G2276683991-POCLOUD","original_format":"UMM_JSON","granule_size":"16.519373893737793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170606-000001-e20170606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.908 + 0 37.758 180","-37.908 -180 37.758 -0.003"],"time_start":"2017-06-07T00:00:02.000Z","updated":"2022-05-24T00:00:29.385Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-07T23:59:58.000Z","id":"G2276681445-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170607-000002-e20170607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.764 + 0.003 37.716 180","-37.764 -180 37.716 -0.002"],"time_start":"2017-06-08T00:00:02.000Z","updated":"2022-05-24T00:07:32.668Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-08T23:59:59.000Z","id":"G2276683490-POCLOUD","original_format":"UMM_JSON","granule_size":"16.764981269836426","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170608-000002-e20170608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.661 + 0.005 37.677 180","-37.661 -180 37.677 0"],"time_start":"2017-06-09T00:00:02.000Z","updated":"2022-05-24T00:20:35.849Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-09T23:59:59.000Z","id":"G2276685824-POCLOUD","original_format":"UMM_JSON","granule_size":"16.70302677154541","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170609-000002-e20170609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.667 + 0.002 37.888 180","-37.667 -180 37.888 -0.001"],"time_start":"2017-06-10T00:00:01.000Z","updated":"2022-05-23T23:53:35.614Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-10T23:59:59.000Z","id":"G2276680328-POCLOUD","original_format":"UMM_JSON","granule_size":"16.600361824035645","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170610-000001-e20170610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.647 + 0.001 37.964 180","-37.647 -180 37.964 0"],"time_start":"2017-06-11T00:00:01.000Z","updated":"2022-05-24T00:03:27.062Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-11T23:59:59.000Z","id":"G2276682025-POCLOUD","original_format":"UMM_JSON","granule_size":"16.620283126831055","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170611-000001-e20170611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.701 + 0.001 38.018 180","-37.701 -180 38.018 0"],"time_start":"2017-06-12T00:00:01.000Z","updated":"2022-05-24T00:11:29.255Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-12T23:59:59.000Z","id":"G2276683825-POCLOUD","original_format":"UMM_JSON","granule_size":"16.227301597595215","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170612-000001-e20170612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.826 + 0.002 37.827 180","-37.826 -180 37.827 -0.002"],"time_start":"2017-06-13T00:00:00.000Z","updated":"2022-05-24T00:09:35.412Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-13T23:59:59.000Z","id":"G2276683692-POCLOUD","original_format":"UMM_JSON","granule_size":"15.437602043151855","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170613-000000-e20170613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.952 + 0 37.733 180","-37.952 -180 37.733 -0.002"],"time_start":"2017-06-14T00:00:01.000Z","updated":"2022-05-24T00:06:36.418Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-14T23:59:59.000Z","id":"G2276682850-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170614-000001-e20170614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.053 + 0.001 37.817 180","-38.053 -180 37.817 -0.002"],"time_start":"2017-06-15T00:00:02.000Z","updated":"2022-05-24T00:45:29.658Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-15T23:59:59.000Z","id":"G2276690249-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170615-000002-e20170615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.061 + 0.002 37.959 180","-38.061 -180 37.959 0"],"time_start":"2017-06-16T00:00:02.000Z","updated":"2022-05-23T23:53:26.060Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-16T23:59:59.000Z","id":"G2276680299-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170616-000002-e20170616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.9 + 0.008 37.945 180","-37.9 -180 37.945 -0.001"],"time_start":"2017-06-17T00:00:02.000Z","updated":"2022-05-24T00:37:32.837Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-17T23:59:59.000Z","id":"G2276688928-POCLOUD","original_format":"UMM_JSON","granule_size":"16.44324779510498","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170617-000002-e20170617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.906 + 0.002 37.796 180","-37.906 -180 37.796 -0.001"],"time_start":"2017-06-18T00:00:02.000Z","updated":"2022-05-24T00:43:28.058Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-18T23:59:59.000Z","id":"G2276690089-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170618-000002-e20170618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0.001 37.668 180","-37.791 -180 37.668 -0.003"],"time_start":"2017-06-19T00:00:01.000Z","updated":"2022-05-24T00:34:37.080Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-19T23:59:59.000Z","id":"G2276688733-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170619-000001-e20170619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.031 + 0 37.778 180","-38.031 -180 37.778 -0.001"],"time_start":"2017-06-20T00:00:01.000Z","updated":"2022-05-24T00:25:35.139Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-20T23:59:59.000Z","id":"G2276686997-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170620-000001-e20170620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38 + 0.005 37.874 180","-38 -180 37.874 -0.005"],"time_start":"2017-06-21T00:00:00.000Z","updated":"2022-05-24T00:30:42.334Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-21T23:59:59.000Z","id":"G2276687972-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170621-000000-e20170621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.84 + 0 37.894 180","-37.84 -180 37.894 -0.001"],"time_start":"2017-06-22T00:00:02.000Z","updated":"2022-05-24T00:19:30.481Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-22T23:59:59.000Z","id":"G2276685721-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170622-000002-e20170622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.019 + 0.001 37.819 180","-38.019 -180 37.819 0"],"time_start":"2017-06-23T00:00:02.000Z","updated":"2022-05-24T00:14:34.524Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-23T23:59:59.000Z","id":"G2276684761-POCLOUD","original_format":"UMM_JSON","granule_size":"16.3046932220459","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170623-000002-e20170623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.063 + 0.007 37.775 180","-38.063 -180 37.775 -0.001"],"time_start":"2017-06-24T00:00:02.000Z","updated":"2022-05-24T00:29:30.466Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-24T23:59:59.000Z","id":"G2276687815-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170624-000002-e20170624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.859 + 0 37.622 180","-37.859 -180 37.622 0"],"time_start":"2017-06-25T00:00:02.000Z","updated":"2022-05-24T00:26:25.689Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-25T23:59:59.000Z","id":"G2276687086-POCLOUD","original_format":"UMM_JSON","granule_size":"16.519441604614258","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170625-000002-e20170625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.787 + 0.001 37.565 180","-37.787 -180 37.565 -0.001"],"time_start":"2017-06-26T00:00:02.000Z","updated":"2022-05-24T00:21:26.897Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-26T23:59:59.000Z","id":"G2276685895-POCLOUD","original_format":"UMM_JSON","granule_size":"16.854814529418945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170626-000002-e20170626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.844 + 0.001 37.726 180","-37.844 -180 37.726 -0.003"],"time_start":"2017-06-27T00:00:00.000Z","updated":"2022-05-24T00:11:30.798Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-27T23:59:59.000Z","id":"G2276683827-POCLOUD","original_format":"UMM_JSON","granule_size":"16.87541961669922","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170627-000000-e20170627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.944 + 0.003 37.829 180","-37.944 -180 37.829 -0.001"],"time_start":"2017-06-28T00:00:02.000Z","updated":"2022-05-23T23:59:29.043Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-28T23:59:59.000Z","id":"G2276681327-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170628-000002-e20170628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.003 + 0.004 37.858 180","-38.003 -180 37.858 -0.001"],"time_start":"2017-06-29T00:00:02.000Z","updated":"2022-05-24T00:14:32.788Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-29T23:59:59.000Z","id":"G2276684727-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170629-000002-e20170629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.124 + 0.001 37.727 180","-38.124 -180 37.727 0"],"time_start":"2017-06-30T00:00:00.000Z","updated":"2022-05-23T23:55:33.520Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-30T23:59:59.000Z","id":"G2276680435-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170630-000000-e20170630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.955 + 0 37.812 180","-37.955 -180 37.812 0"],"time_start":"2017-07-01T00:00:02.000Z","updated":"2022-05-24T00:06:37.050Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-01T23:59:59.000Z","id":"G2276682873-POCLOUD","original_format":"UMM_JSON","granule_size":"19.650994300842285","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170701-000002-e20170701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.996 + 0 37.792 180","-37.996 -180 37.792 -0.001"],"time_start":"2017-07-02T00:00:00.000Z","updated":"2022-05-24T00:36:36.129Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-02T23:59:59.000Z","id":"G2276688880-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170702-000000-e20170702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.865 + 0 37.809 180","-37.865 -180 37.809 -0.005"],"time_start":"2017-07-03T00:00:01.000Z","updated":"2022-05-23T23:58:28.652Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-03T23:59:59.000Z","id":"G2276681277-POCLOUD","original_format":"UMM_JSON","granule_size":"19.505209922790527","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170703-000001-e20170703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.594 + 0.001 37.741 180","-38.594 -180 37.741 -0.001"],"time_start":"2017-07-04T00:00:00.000Z","updated":"2022-05-24T00:39:46.922Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-04T23:59:59.000Z","id":"G2276689580-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170704-000000-e20170704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.185 + 0.001 37.762 180","-38.185 -180 37.762 -0.002"],"time_start":"2017-07-05T00:00:00.000Z","updated":"2022-05-24T00:06:33.197Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-05T23:59:59.000Z","id":"G2276682849-POCLOUD","original_format":"UMM_JSON","granule_size":"19.235177040100098","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170705-000000-e20170705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.038 + 0 37.707 180","-38.038 -180 37.707 0"],"time_start":"2017-07-06T00:00:02.000Z","updated":"2022-05-24T00:28:27.712Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-06T23:59:59.000Z","id":"G2276687699-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170706-000002-e20170706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.68 + 0 37.684 180","-37.68 -180 37.684 -0.001"],"time_start":"2017-07-07T00:00:00.000Z","updated":"2022-05-24T00:00:31.034Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-07T23:59:59.000Z","id":"G2276681449-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170707-000000-e20170707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.612 + 0 37.758 180","-37.612 -180 37.758 -0.001"],"time_start":"2017-07-08T00:00:02.000Z","updated":"2022-05-24T00:21:28.567Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-08T23:59:59.000Z","id":"G2276685898-POCLOUD","original_format":"UMM_JSON","granule_size":"14.645121574401855","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170708-000002-e20170708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.6 + 0.001 37.639 180","-37.6 -180 37.639 -0.003"],"time_start":"2017-07-09T00:00:02.000Z","updated":"2022-05-24T00:07:34.151Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-09T23:59:59.000Z","id":"G2276683499-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170709-000002-e20170709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.687 + 0 37.677 180","-37.687 -180 37.677 -0.001"],"time_start":"2017-07-10T00:00:01.000Z","updated":"2022-05-24T00:30:33.180Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-10T23:59:59.000Z","id":"G2276687928-POCLOUD","original_format":"UMM_JSON","granule_size":"13.713064193725586","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170710-000001-e20170710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.098 + 0.001 37.59 180","-40.098 -180 37.59 -0.003"],"time_start":"2017-07-11T00:00:02.000Z","updated":"2022-05-24T00:30:31.062Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-11T23:59:58.000Z","id":"G2276687920-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170711-000002-e20170711-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.69 + 0.008 37.287 180","-39.69 -180 37.287 -0.002"],"time_start":"2017-07-12T00:00:02.000Z","updated":"2022-05-24T00:31:29.144Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-12T23:59:59.000Z","id":"G2276688013-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170712-000002-e20170712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.961 + 0.004 37.203 180","-38.961 -180 37.203 -0.002"],"time_start":"2017-07-13T00:00:01.000Z","updated":"2022-05-24T00:24:24.143Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-13T23:59:59.000Z","id":"G2276686836-POCLOUD","original_format":"UMM_JSON","granule_size":"11.775757789611816","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170713-000001-e20170713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.224 + 0.007 37.291 180","-40.224 -180 37.291 -0.001"],"time_start":"2017-07-14T00:00:02.000Z","updated":"2022-05-24T00:14:26.733Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-14T23:59:58.000Z","id":"G2276684704-POCLOUD","original_format":"UMM_JSON","granule_size":"11.938638687133789","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170714-000002-e20170714-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.834 + 0.002 37.45 180","-38.834 -180 37.45 -0.002"],"time_start":"2017-07-15T00:00:01.000Z","updated":"2022-05-24T00:22:29.978Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-15T23:59:58.000Z","id":"G2276686375-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170715-000001-e20170715-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.148 + 0.001 37.424 180","-38.148 -180 37.424 -0.004"],"time_start":"2017-07-16T00:00:01.000Z","updated":"2022-05-23T23:58:24.360Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-16T23:59:59.000Z","id":"G2276681259-POCLOUD","original_format":"UMM_JSON","granule_size":"13.819430351257324","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170716-000001-e20170716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.033 + 0.001 37.387 180","-38.033 -180 37.387 -0.001"],"time_start":"2017-07-17T00:00:02.000Z","updated":"2022-05-24T00:48:24.059Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-17T23:59:58.000Z","id":"G2276692065-POCLOUD","original_format":"UMM_JSON","granule_size":"13.521318435668945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170717-000002-e20170717-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.762 + 0.003 37.466 180","-37.762 -180 37.466 -0.005"],"time_start":"2017-07-18T00:00:01.000Z","updated":"2022-05-24T00:48:29.980Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-18T23:59:59.000Z","id":"G2276692096-POCLOUD","original_format":"UMM_JSON","granule_size":"13.266111373901367","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170718-000001-e20170718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.051 + 0.002 37.405 180","-39.051 -180 37.405 -0.001"],"time_start":"2017-07-19T00:00:02.000Z","updated":"2022-05-24T00:09:34.868Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-19T23:59:59.000Z","id":"G2276683689-POCLOUD","original_format":"UMM_JSON","granule_size":"13.174906730651855","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170719-000002-e20170719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.881 + 0.001 37.351 180","-39.881 -180 37.351 -0.004"],"time_start":"2017-07-20T00:00:02.000Z","updated":"2022-05-24T00:14:38.245Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-20T23:59:58.000Z","id":"G2276684754-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170720-000002-e20170720-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.415 + 0 37.288 180","-39.415 -180 37.288 -0.001"],"time_start":"2017-07-21T00:00:02.000Z","updated":"2022-05-24T00:32:37.100Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-21T23:59:59.000Z","id":"G2276688280-POCLOUD","original_format":"UMM_JSON","granule_size":"11.915003776550293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170721-000002-e20170721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.721 + 0.001 37.195 180","-40.721 -180 37.195 -0.003"],"time_start":"2017-07-22T00:00:01.000Z","updated":"2022-05-24T00:44:22.267Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-22T23:59:59.000Z","id":"G2276690169-POCLOUD","original_format":"UMM_JSON","granule_size":"11.723621368408203","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170722-000001-e20170722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.267 + 0.001 37.256 180","-40.267 -180 37.256 -0.002"],"time_start":"2017-07-23T00:00:02.000Z","updated":"2022-05-24T00:18:23.860Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-23T23:59:58.000Z","id":"G2276685608-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170723-000002-e20170723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.743 + 0.001 37.664 180","-37.743 -180 37.664 -0.002"],"time_start":"2017-07-24T00:00:02.000Z","updated":"2022-05-24T00:05:07.106Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-24T23:59:58.000Z","id":"G2276682575-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170724-000002-e20170724-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.678 + 0 37.726 180","-37.678 -180 37.726 0"],"time_start":"2017-07-25T00:00:01.000Z","updated":"2022-05-23T23:55:33.840Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-25T23:59:59.000Z","id":"G2276680436-POCLOUD","original_format":"UMM_JSON","granule_size":"14.939906120300293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170725-000001-e20170725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.582 + 0 37.644 180","-37.582 -180 37.644 -0.003"],"time_start":"2017-07-26T00:00:02.000Z","updated":"2022-05-23T23:47:31.735Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-26T23:59:59.000Z","id":"G2276677586-POCLOUD","original_format":"UMM_JSON","granule_size":"19.42629909515381","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170726-000002-e20170726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.715 + 0.001 37.646 180","-37.715 -180 37.646 -0.003"],"time_start":"2017-07-27T00:00:00.000Z","updated":"2022-05-24T00:00:35.393Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-27T23:59:59.000Z","id":"G2276681462-POCLOUD","original_format":"UMM_JSON","granule_size":"19.780776023864746","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170727-000000-e20170727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0 37.738 180","-37.632 -180 37.738 -0.002"],"time_start":"2017-07-28T00:00:01.000Z","updated":"2022-05-24T00:22:36.752Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-28T23:59:59.000Z","id":"G2276686577-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170728-000001-e20170728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.711 + 0.001 37.668 180","-37.711 -180 37.668 -0.002"],"time_start":"2017-07-29T00:00:01.000Z","updated":"2022-05-24T00:16:27.303Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-29T23:59:59.000Z","id":"G2276685044-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170729-000001-e20170729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.823 + 0.005 37.647 180","-37.823 -180 37.647 0"],"time_start":"2017-07-30T00:00:02.000Z","updated":"2022-05-24T00:49:30.650Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-30T23:59:58.000Z","id":"G2276692686-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170730-000002-e20170730-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.545 + 0.001 37.85 180","-38.545 -180 37.85 -0.001"],"time_start":"2017-07-31T00:00:02.000Z","updated":"2022-05-23T23:57:33.144Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-07-31T23:59:59.000Z","id":"G2276680579-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170731-000002-e20170731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.486 + 0 37.991 180","-38.486 -180 37.991 0"],"time_start":"2017-08-01T00:00:02.000Z","updated":"2022-05-24T00:21:32.476Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-01T23:59:59.000Z","id":"G2276685919-POCLOUD","original_format":"UMM_JSON","granule_size":"14.28349781036377","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170801-000002-e20170801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.28 + 0.004 37.899 180","-38.28 -180 37.899 -0.001"],"time_start":"2017-08-02T00:00:01.000Z","updated":"2022-05-24T00:45:24.126Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-02T23:59:59.000Z","id":"G2276690239-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170802-000001-e20170802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.356 + 0 37.688 180","-38.356 -180 37.688 -0.002"],"time_start":"2017-08-03T00:00:01.000Z","updated":"2022-05-23T23:50:26.704Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-03T23:59:59.000Z","id":"G2276679764-POCLOUD","original_format":"UMM_JSON","granule_size":"13.980987548828125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170803-000001-e20170803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.938 + 0.003 37.674 180","-37.938 -180 37.674 0"],"time_start":"2017-08-04T00:00:00.000Z","updated":"2022-05-24T00:32:28.541Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-04T23:59:59.000Z","id":"G2276688083-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170804-000000-e20170804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.884 + 0.002 37.799 180","-37.884 -180 37.799 -0.001"],"time_start":"2017-08-05T00:00:01.000Z","updated":"2022-05-24T00:10:24.287Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-05T23:59:58.000Z","id":"G2276683738-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170805-000001-e20170805-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.801 + 0.003 37.743 180","-37.801 -180 37.743 -0.007"],"time_start":"2017-08-06T00:00:02.000Z","updated":"2022-05-24T00:24:26.923Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-06T23:59:59.000Z","id":"G2276686843-POCLOUD","original_format":"UMM_JSON","granule_size":"12.373847007751465","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170806-000002-e20170806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.689 + 0.002 37.722 180","-37.689 -180 37.722 -0.003"],"time_start":"2017-08-07T00:00:02.000Z","updated":"2022-05-24T00:44:22.266Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-07T23:59:59.000Z","id":"G2276690171-POCLOUD","original_format":"UMM_JSON","granule_size":"9.21963119506836","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170807-000002-e20170807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0.002 37.901 180","-37.747 -180 37.901 -0.002"],"time_start":"2017-08-08T00:00:02.000Z","updated":"2022-05-24T00:30:31.944Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-08T23:59:59.000Z","id":"G2276687926-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170808-000002-e20170808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.988 + 0 37.841 180","-37.988 -180 37.841 0"],"time_start":"2017-08-09T00:00:02.000Z","updated":"2022-05-24T00:14:34.534Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-09T23:59:59.000Z","id":"G2276684729-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170809-000002-e20170809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.069 + 0.002 37.846 180","-38.069 -180 37.846 -0.001"],"time_start":"2017-08-10T00:00:01.000Z","updated":"2022-05-23T23:59:27.724Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-10T23:59:58.000Z","id":"G2276681324-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170810-000001-e20170810-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.929 + 0.003 37.941 180","-37.929 -180 37.941 -0.008"],"time_start":"2017-08-11T00:00:02.000Z","updated":"2022-05-24T00:22:27.875Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-11T23:59:59.000Z","id":"G2276686299-POCLOUD","original_format":"UMM_JSON","granule_size":"13.345844268798828","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170811-000002-e20170811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.929 + 0 38.006 180","-37.929 -180 38.006 -0.004"],"time_start":"2017-08-12T00:00:02.000Z","updated":"2022-05-24T00:01:29.564Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-12T23:59:58.000Z","id":"G2276681525-POCLOUD","original_format":"UMM_JSON","granule_size":"13.42428970336914","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170812-000002-e20170812-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.008 + 0 37.842 180","-38.008 -180 37.842 0"],"time_start":"2017-08-13T00:00:02.000Z","updated":"2022-05-24T00:01:25.021Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-13T23:59:58.000Z","id":"G2276681514-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170813-000002-e20170813-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.988 + 0.001 37.836 180","-37.988 -180 37.836 -0.001"],"time_start":"2017-08-14T00:00:02.000Z","updated":"2022-05-24T00:18:24.746Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-14T23:59:58.000Z","id":"G2276685615-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170814-000002-e20170814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.807 + 0.001 37.78 180","-37.807 -180 37.78 -0.001"],"time_start":"2017-08-15T00:00:01.000Z","updated":"2022-05-24T00:49:23.927Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-15T23:59:59.000Z","id":"G2276692568-POCLOUD","original_format":"UMM_JSON","granule_size":"15.89862060546875","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170815-000001-e20170815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.825 + 0 37.692 180","-37.825 -180 37.692 0"],"time_start":"2017-08-16T00:00:02.000Z","updated":"2022-05-24T00:47:38.842Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-16T23:59:59.000Z","id":"G2276691782-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170816-000002-e20170816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.779 + 0.001 37.765 180","-37.779 -180 37.765 -0.004"],"time_start":"2017-08-17T00:00:00.000Z","updated":"2022-05-24T00:40:29.389Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-17T23:59:59.000Z","id":"G2276689607-POCLOUD","original_format":"UMM_JSON","granule_size":"18.64640712738037","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170817-000000-e20170817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.982 + 0 37.867 180","-37.982 -180 37.867 0"],"time_start":"2017-08-18T00:00:01.000Z","updated":"2022-05-24T00:26:31.625Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-18T23:59:59.000Z","id":"G2276687097-POCLOUD","original_format":"UMM_JSON","granule_size":"18.484257698059082","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170818-000001-e20170818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.874 + 0.003 37.917 180","-37.874 -180 37.917 0"],"time_start":"2017-08-19T00:00:00.000Z","updated":"2022-05-23T23:59:31.361Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-19T23:59:59.000Z","id":"G2276681346-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170819-000000-e20170819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.082 + 0 37.893 180","-38.082 -180 37.893 -0.003"],"time_start":"2017-08-20T00:00:02.000Z","updated":"2022-05-24T00:40:42.641Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-20T23:59:59.000Z","id":"G2276689637-POCLOUD","original_format":"UMM_JSON","granule_size":"18.319735527038574","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170820-000002-e20170820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.087 + 0.002 37.918 180","-38.087 -180 37.918 -0.004"],"time_start":"2017-08-21T00:00:02.000Z","updated":"2022-05-23T23:55:31.138Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-21T23:59:58.000Z","id":"G2276680429-POCLOUD","original_format":"UMM_JSON","granule_size":"17.79829692840576","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170821-000002-e20170821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.931 + 0.001 37.825 180","-37.931 -180 37.825 0"],"time_start":"2017-08-22T00:00:01.000Z","updated":"2022-05-24T00:49:38.267Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-22T23:59:58.000Z","id":"G2276692753-POCLOUD","original_format":"UMM_JSON","granule_size":"18.878509521484375","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170822-000001-e20170822-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.897 + 0 37.778 180","-37.897 -180 37.778 -0.003"],"time_start":"2017-08-23T00:00:02.000Z","updated":"2022-05-24T00:42:28.654Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-23T23:59:59.000Z","id":"G2276689957-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170823-000002-e20170823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.702 + 0.001 37.792 180","-37.702 -180 37.792 0"],"time_start":"2017-08-24T00:00:00.000Z","updated":"2022-05-24T00:33:36.432Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-24T23:59:59.000Z","id":"G2276688643-POCLOUD","original_format":"UMM_JSON","granule_size":"19.00461196899414","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170824-000000-e20170824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.834 + 0 37.852 180","-37.834 -180 37.852 -0.001"],"time_start":"2017-08-25T00:00:00.000Z","updated":"2022-05-24T00:03:34.025Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-25T23:59:59.000Z","id":"G2276682039-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170825-000000-e20170825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.983 + 0.001 37.896 180","-37.983 -180 37.896 -0.005"],"time_start":"2017-08-26T00:00:02.000Z","updated":"2022-05-23T23:55:31.835Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-26T23:59:59.000Z","id":"G2276680430-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170826-000002-e20170826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.853 + 0.001 37.873 180","-37.853 -180 37.873 -0.003"],"time_start":"2017-08-27T00:00:02.000Z","updated":"2022-05-24T00:36:30.563Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-27T23:59:59.000Z","id":"G2276688870-POCLOUD","original_format":"UMM_JSON","granule_size":"19.466415405273438","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170827-000002-e20170827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.965 + 0.001 37.979 180","-37.965 -180 37.979 -0.001"],"time_start":"2017-08-28T00:00:02.000Z","updated":"2022-05-24T00:38:33.021Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-28T23:59:59.000Z","id":"G2276689510-POCLOUD","original_format":"UMM_JSON","granule_size":"18.82877254486084","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170828-000002-e20170828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.975 + 0.002 38.025 180","-37.975 -180 38.025 0"],"time_start":"2017-08-29T00:00:01.000Z","updated":"2022-05-23T23:52:33.438Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-29T23:59:59.000Z","id":"G2276680259-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170829-000001-e20170829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.984 + 0 37.877 180","-37.984 -180 37.877 -0.001"],"time_start":"2017-08-30T00:00:02.000Z","updated":"2022-05-24T00:21:40.316Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-30T23:59:59.000Z","id":"G2276685975-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170830-000002-e20170830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.119 + 0 37.702 180","-38.119 -180 37.702 0"],"time_start":"2017-08-31T00:00:02.000Z","updated":"2022-05-24T00:07:26.366Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-08-31T23:59:59.000Z","id":"G2276683109-POCLOUD","original_format":"UMM_JSON","granule_size":"17.824379920959473","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170831-000002-e20170831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.968 + 0.001 37.666 180","-37.968 -180 37.666 0"],"time_start":"2017-09-01T00:00:02.000Z","updated":"2022-05-24T00:45:29.523Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-01T23:59:59.000Z","id":"G2276690250-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170901-000002-e20170901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.958 + 0.001 37.786 180","-37.958 -180 37.786 -0.001"],"time_start":"2017-09-02T00:00:01.000Z","updated":"2022-05-24T00:32:31.142Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-02T23:59:59.000Z","id":"G2276688089-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170902-000001-e20170902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.612 + 0.001 37.868 180","-37.612 -180 37.868 0"],"time_start":"2017-09-03T00:00:01.000Z","updated":"2022-05-23T23:57:36.840Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-03T23:59:59.000Z","id":"G2276680769-POCLOUD","original_format":"UMM_JSON","granule_size":"18.142513275146484","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170903-000001-e20170903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.255 + 0 37.766 180","-38.255 -180 37.766 0"],"time_start":"2017-09-04T00:00:01.000Z","updated":"2022-05-24T00:20:35.435Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-04T23:59:59.000Z","id":"G2276685826-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170904-000001-e20170904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.392 + 0.001 37.49 180","-38.392 -180 37.49 -0.001"],"time_start":"2017-09-05T00:00:01.000Z","updated":"2022-05-24T00:11:36.674Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-05T23:59:59.000Z","id":"G2276683837-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170905-000001-e20170905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.08 + 0.001 37.587 180","-38.08 -180 37.587 -0.002"],"time_start":"2017-09-06T00:00:02.000Z","updated":"2022-05-24T00:31:27.588Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-06T23:59:59.000Z","id":"G2276688017-POCLOUD","original_format":"UMM_JSON","granule_size":"18.14685821533203","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170906-000002-e20170906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.759 + 0 37.638 180","-37.759 -180 37.638 0"],"time_start":"2017-09-07T00:00:01.000Z","updated":"2022-05-24T00:37:27.964Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-07T23:59:59.000Z","id":"G2276688918-POCLOUD","original_format":"UMM_JSON","granule_size":"17.70511531829834","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170907-000001-e20170907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0.004 37.627 180","-37.603 -180 37.627 0"],"time_start":"2017-09-08T00:00:01.000Z","updated":"2022-05-24T00:15:28.749Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-08T23:59:59.000Z","id":"G2276684971-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170908-000001-e20170908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.732 + 0.001 37.593 180","-37.732 -180 37.593 -0.001"],"time_start":"2017-09-09T00:00:01.000Z","updated":"2022-05-24T00:06:41.179Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-09T23:59:59.000Z","id":"G2276682874-POCLOUD","original_format":"UMM_JSON","granule_size":"17.960567474365234","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170909-000001-e20170909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.716 + 0 37.469 180","-37.716 -180 37.469 -0.001"],"time_start":"2017-09-10T00:00:00.000Z","updated":"2022-05-24T00:31:33.849Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-10T23:59:59.000Z","id":"G2276688022-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170910-000000-e20170910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.835 + 0.001 37.51 180","-37.835 -180 37.51 -0.002"],"time_start":"2017-09-11T00:00:02.000Z","updated":"2022-05-24T00:12:31.130Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-11T23:59:59.000Z","id":"G2276683938-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170911-000002-e20170911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.771 + 0 37.865 180","-37.771 -180 37.865 -0.001"],"time_start":"2017-09-12T00:00:02.000Z","updated":"2022-05-24T00:26:25.728Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-12T23:59:59.000Z","id":"G2276687087-POCLOUD","original_format":"UMM_JSON","granule_size":"18.3219051361084","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170912-000002-e20170912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.702 + 0.001 37.724 180","-37.702 -180 37.724 -0.001"],"time_start":"2017-09-13T00:00:02.000Z","updated":"2022-05-24T00:26:41.731Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-13T23:59:59.000Z","id":"G2276687148-POCLOUD","original_format":"UMM_JSON","granule_size":"18.662781715393066","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170913-000002-e20170913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.678 + 0.001 37.721 180","-37.678 -180 37.721 0"],"time_start":"2017-09-14T00:00:01.000Z","updated":"2022-05-23T23:54:34.634Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-14T23:59:59.000Z","id":"G2276680368-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170914-000001-e20170914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.726 + 0 37.652 180","-37.726 -180 37.652 -0.007"],"time_start":"2017-09-15T00:00:01.000Z","updated":"2022-05-24T00:29:29.428Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-15T23:59:59.000Z","id":"G2276687821-POCLOUD","original_format":"UMM_JSON","granule_size":"19.020644187927246","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170915-000001-e20170915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.99 + 0.002 37.766 180","-37.99 -180 37.766 -0.001"],"time_start":"2017-09-16T00:00:02.000Z","updated":"2022-05-23T23:59:30.066Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-16T23:59:59.000Z","id":"G2276681329-POCLOUD","original_format":"UMM_JSON","granule_size":"19.421807289123535","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170916-000002-e20170916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.997 + 0.002 37.597 180","-37.997 -180 37.597 -0.001"],"time_start":"2017-09-17T00:00:02.000Z","updated":"2022-05-24T00:01:34.291Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-17T23:59:59.000Z","id":"G2276681546-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170917-000002-e20170917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.375 + 0 37.5 180","-38.375 -180 37.5 -0.001"],"time_start":"2017-09-18T00:00:02.000Z","updated":"2022-05-24T00:46:31.561Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-18T23:59:59.000Z","id":"G2276690924-POCLOUD","original_format":"UMM_JSON","granule_size":"19.41841697692871","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170918-000002-e20170918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.405 + 0 37.594 180","-38.405 -180 37.594 0"],"time_start":"2017-09-19T00:00:02.000Z","updated":"2022-05-24T00:45:31.368Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-19T23:59:59.000Z","id":"G2276690253-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170919-000002-e20170919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.891 + 0.003 37.657 180","-37.891 -180 37.657 -0.004"],"time_start":"2017-09-20T00:00:02.000Z","updated":"2022-05-24T00:44:29.018Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-20T23:59:59.000Z","id":"G2276690178-POCLOUD","original_format":"UMM_JSON","granule_size":"19.24032211303711","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170920-000002-e20170920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.857 + 0 37.59 180","-37.857 -180 37.59 -0.001"],"time_start":"2017-09-21T00:00:02.000Z","updated":"2022-05-24T00:46:33.489Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-21T23:59:59.000Z","id":"G2276690926-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170921-000002-e20170921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.767 + 0 37.624 180","-37.767 -180 37.624 0"],"time_start":"2017-09-22T00:00:02.000Z","updated":"2022-05-24T00:46:35.218Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-22T23:59:59.000Z","id":"G2276690954-POCLOUD","original_format":"UMM_JSON","granule_size":"19.389541625976562","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170922-000002-e20170922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.704 + 0 37.638 180","-37.704 -180 37.638 -0.005"],"time_start":"2017-09-23T00:00:02.000Z","updated":"2022-05-23T23:57:32.339Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-23T23:59:59.000Z","id":"G2276680577-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170923-000002-e20170923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.647 + 0 37.602 180","-37.647 -180 37.602 -0.002"],"time_start":"2017-09-24T00:00:01.000Z","updated":"2022-05-23T23:55:34.692Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-24T23:59:59.000Z","id":"G2276680439-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170924-000001-e20170924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.722 + 0 37.529 180","-37.722 -180 37.529 -0.004"],"time_start":"2017-09-25T00:00:01.000Z","updated":"2022-05-23T23:49:35.495Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-25T23:59:59.000Z","id":"G2276679626-POCLOUD","original_format":"UMM_JSON","granule_size":"17.226354598999023","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170925-000001-e20170925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.672 + 0.003 37.609 180","-37.672 -180 37.609 0"],"time_start":"2017-09-26T00:00:00.000Z","updated":"2022-05-23T23:52:35.903Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-26T23:59:59.000Z","id":"G2276680263-POCLOUD","original_format":"UMM_JSON","granule_size":"16.803915977478027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170926-000000-e20170926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.884 + 0 37.654 180","-37.884 -180 37.654 -0.001"],"time_start":"2017-09-27T00:00:00.000Z","updated":"2022-05-24T00:21:31.173Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-27T23:59:59.000Z","id":"G2276685911-POCLOUD","original_format":"UMM_JSON","granule_size":"16.545926094055176","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170927-000000-e20170927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.923 + 0.001 37.6 180","-37.923 -180 37.6 -0.004"],"time_start":"2017-09-28T00:00:01.000Z","updated":"2022-05-24T00:06:58.848Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-28T23:59:59.000Z","id":"G2276682884-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170928-000001-e20170928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.923 + 0 37.801 180","-37.923 -180 37.801 -0.001"],"time_start":"2017-09-29T00:00:02.000Z","updated":"2022-05-24T00:20:40.888Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-29T23:59:59.000Z","id":"G2276685851-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170929-000002-e20170929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0 37.874 180","-37.824 -180 37.874 -0.001"],"time_start":"2017-09-30T00:00:00.000Z","updated":"2022-05-24T00:26:33.548Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-09-30T23:59:59.000Z","id":"G2276687101-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20170930-000000-e20170930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.831 + 0.003 37.711 180","-37.831 -180 37.711 -0.003"],"time_start":"2017-10-01T00:00:00.000Z","updated":"2022-05-23T23:55:32.370Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-01T23:59:58.000Z","id":"G2276680433-POCLOUD","original_format":"UMM_JSON","granule_size":"14.454447746276855","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171001-000000-e20171001-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.796 + 0.003 37.786 180","-37.796 -180 37.786 -0.004"],"time_start":"2017-10-02T00:00:02.000Z","updated":"2022-05-24T00:31:33.055Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-02T23:59:59.000Z","id":"G2276688021-POCLOUD","original_format":"UMM_JSON","granule_size":"14.109066009521484","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171002-000002-e20171002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.768 + 0 37.729 180","-37.768 -180 37.729 -0.004"],"time_start":"2017-10-03T00:00:02.000Z","updated":"2022-05-24T00:07:28.932Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-03T23:59:59.000Z","id":"G2276683222-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171003-000002-e20171003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.648 + 0.001 37.715 180","-37.648 -180 37.715 -0.007"],"time_start":"2017-10-04T00:00:01.000Z","updated":"2022-05-23T23:58:31.615Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-04T23:59:59.000Z","id":"G2276681286-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171004-000001-e20171004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.606 + 0.001 37.625 180","-37.606 -180 37.625 -0.001"],"time_start":"2017-10-05T00:00:02.000Z","updated":"2022-05-24T00:28:27.056Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-05T23:59:59.000Z","id":"G2276687690-POCLOUD","original_format":"UMM_JSON","granule_size":"11.859142303466797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171005-000002-e20171005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.721 + 0.006 37.689 180","-37.721 -180 37.689 -0.003"],"time_start":"2017-10-06T00:00:02.000Z","updated":"2022-05-24T00:46:34.307Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-06T23:59:59.000Z","id":"G2276690952-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171006-000002-e20171006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.83 + 0.006 37.577 180","-37.83 -180 37.577 -0.002"],"time_start":"2017-10-07T00:00:02.000Z","updated":"2022-05-24T00:38:30.809Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-07T23:59:59.000Z","id":"G2276689508-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171007-000002-e20171007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.894 + 0.003 37.75 180","-37.894 -180 37.75 -0.002"],"time_start":"2017-10-08T00:00:02.000Z","updated":"2022-05-24T00:01:26.546Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-08T23:59:58.000Z","id":"G2276681518-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171008-000002-e20171008-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.878 + 0.002 37.848 180","-37.878 -180 37.848 -0.002"],"time_start":"2017-10-09T00:00:02.000Z","updated":"2022-05-24T00:01:35.202Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-09T23:59:59.000Z","id":"G2276681547-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171009-000002-e20171009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.963 + 0.001 37.902 180","-37.963 -180 37.902 -0.002"],"time_start":"2017-10-10T00:00:02.000Z","updated":"2022-05-24T00:42:33.381Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-10T23:59:59.000Z","id":"G2276689983-POCLOUD","original_format":"UMM_JSON","granule_size":"11.944916725158691","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171010-000002-e20171010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.908 + 0 37.822 180","-37.908 -180 37.822 -0.001"],"time_start":"2017-10-11T00:00:02.000Z","updated":"2022-05-23T23:51:30.597Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-11T23:59:59.000Z","id":"G2276679862-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171011-000002-e20171011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.804 + 0.003 37.845 180","-37.804 -180 37.845 -0.002"],"time_start":"2017-10-12T00:00:02.000Z","updated":"2022-05-24T00:24:27.457Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-12T23:59:59.000Z","id":"G2276686838-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171012-000002-e20171012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.77 + 0 38.953 180","-37.77 -180 38.953 0"],"time_start":"2017-10-13T00:00:01.000Z","updated":"2022-05-24T00:06:38.544Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-13T23:59:59.000Z","id":"G2276682861-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171013-000001-e20171013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.785 + 0.001 37.795 180","-37.785 -180 37.795 -0.001"],"time_start":"2017-10-14T00:00:02.000Z","updated":"2022-05-24T00:12:30.108Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-14T23:59:59.000Z","id":"G2276683935-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171014-000002-e20171014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.822 + 0 37.866 180","-37.822 -180 37.866 -0.005"],"time_start":"2017-10-15T00:00:02.000Z","updated":"2022-05-24T00:05:25.848Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-15T23:59:59.000Z","id":"G2276682604-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171015-000002-e20171015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.862 + 0 37.748 180","-37.862 -180 37.748 -0.004"],"time_start":"2017-10-16T00:00:01.000Z","updated":"2022-05-24T00:06:46.109Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-16T23:59:59.000Z","id":"G2276682883-POCLOUD","original_format":"UMM_JSON","granule_size":"15.958849906921387","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171016-000001-e20171016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.728 + 0.002 37.715 180","-37.728 -180 37.715 0"],"time_start":"2017-10-17T00:00:02.000Z","updated":"2022-05-24T00:26:44.070Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-17T23:59:59.000Z","id":"G2276687157-POCLOUD","original_format":"UMM_JSON","granule_size":"13.750873565673828","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171017-000002-e20171017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.98 + 0.003 37.939 180","-37.98 -180 37.939 -0.002"],"time_start":"2017-10-18T00:00:02.000Z","updated":"2022-05-24T00:30:40.009Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-18T23:59:59.000Z","id":"G2276687953-POCLOUD","original_format":"UMM_JSON","granule_size":"13.820512771606445","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171018-000002-e20171018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.521 + 0.004 37.804 180","-37.521 -180 37.804 0"],"time_start":"2017-10-19T00:00:02.000Z","updated":"2022-05-24T00:25:29.956Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-19T23:59:59.000Z","id":"G2276686981-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171019-000002-e20171019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.754 + 0.005 37.527 180","-37.754 -180 37.527 -0.003"],"time_start":"2017-10-20T00:00:02.000Z","updated":"2022-05-24T00:34:33.995Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-20T23:59:59.000Z","id":"G2276688719-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171020-000002-e20171020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.851 + 0.003 37.574 180","-37.851 -180 37.574 -0.003"],"time_start":"2017-10-21T00:00:02.000Z","updated":"2022-05-24T00:42:38.222Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-21T23:59:59.000Z","id":"G2276690015-POCLOUD","original_format":"UMM_JSON","granule_size":"11.70869255065918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171021-000002-e20171021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.812 + 0.006 37.754 180","-37.812 -180 37.754 -0.002"],"time_start":"2017-10-22T00:00:02.000Z","updated":"2022-05-24T00:02:30.180Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-22T23:59:58.000Z","id":"G2276681610-POCLOUD","original_format":"UMM_JSON","granule_size":"11.670388221740723","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171022-000002-e20171022-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.784 + 0.007 37.739 180","-37.784 -180 37.739 -0.002"],"time_start":"2017-10-23T00:00:02.000Z","updated":"2022-05-24T00:38:41.852Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-23T23:59:59.000Z","id":"G2276689518-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171023-000002-e20171023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.877 + 0.002 37.764 180","-37.877 -180 37.764 -0.001"],"time_start":"2017-10-24T00:00:01.000Z","updated":"2022-05-24T00:30:24.445Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-24T23:59:59.000Z","id":"G2276687915-POCLOUD","original_format":"UMM_JSON","granule_size":"12.240132331848145","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171024-000001-e20171024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.898 + 0.004 37.785 180","-37.898 -180 37.785 -0.001"],"time_start":"2017-10-25T00:00:02.000Z","updated":"2022-05-23T23:54:26.935Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-25T23:59:59.000Z","id":"G2276680352-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171025-000002-e20171025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.886 + 0.001 37.855 180","-37.886 -180 37.855 -0.001"],"time_start":"2017-10-26T00:00:00.000Z","updated":"2022-05-24T00:06:27.500Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-26T23:59:59.000Z","id":"G2276682828-POCLOUD","original_format":"UMM_JSON","granule_size":"11.942764282226562","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171026-000000-e20171026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.788 + 0.002 37.859 180","-37.788 -180 37.859 -0.004"],"time_start":"2017-10-27T00:00:02.000Z","updated":"2022-05-24T00:11:27.924Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-27T23:59:58.000Z","id":"G2276683821-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171027-000002-e20171027-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.66 + 0 37.826 180","-37.66 -180 37.826 -0.001"],"time_start":"2017-10-28T00:00:02.000Z","updated":"2022-05-24T00:43:25.566Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-28T23:59:59.000Z","id":"G2276690087-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171028-000002-e20171028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.677 + 0.001 37.674 180","-37.677 -180 37.674 -0.004"],"time_start":"2017-10-29T00:00:01.000Z","updated":"2022-05-24T00:22:29.939Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-29T23:59:59.000Z","id":"G2276686352-POCLOUD","original_format":"UMM_JSON","granule_size":"11.88940143585205","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171029-000001-e20171029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.793 + 0 37.597 180","-37.793 -180 37.597 -0.001"],"time_start":"2017-10-30T00:00:02.000Z","updated":"2022-05-24T00:45:25.804Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-30T23:59:59.000Z","id":"G2276690240-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171030-000002-e20171030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.829 + 0.001 37.431 180","-37.829 -180 37.431 -0.002"],"time_start":"2017-10-31T00:00:02.000Z","updated":"2022-05-23T23:58:27.050Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-10-31T23:59:59.000Z","id":"G2276681274-POCLOUD","original_format":"UMM_JSON","granule_size":"12.10633659362793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171031-000002-e20171031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.828 + 0.001 37.374 180","-37.828 -180 37.374 -0.001"],"time_start":"2017-11-01T00:00:02.000Z","updated":"2022-05-24T00:39:26.191Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-01T23:59:59.000Z","id":"G2276689548-POCLOUD","original_format":"UMM_JSON","granule_size":"9.938060760498047","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171101-000002-e20171101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0.002 37.448 180","-37.641 -180 37.448 -0.001"],"time_start":"2017-11-02T00:00:02.000Z","updated":"2022-05-24T00:14:26.119Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-02T23:59:58.000Z","id":"G2276684714-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171102-000002-e20171102-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.629 + 0.001 37.65 180","-37.629 -180 37.65 -0.007"],"time_start":"2017-11-03T00:00:02.000Z","updated":"2022-05-23T23:58:26.054Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-03T23:59:58.000Z","id":"G2276681273-POCLOUD","original_format":"UMM_JSON","granule_size":"12.458123207092285","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171103-000002-e20171103-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.848 + 0 37.66 180","-37.848 -180 37.66 -0.002"],"time_start":"2017-11-04T00:00:01.000Z","updated":"2022-05-24T00:21:30.256Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-04T23:59:59.000Z","id":"G2276685906-POCLOUD","original_format":"UMM_JSON","granule_size":"14.641416549682617","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171104-000001-e20171104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.804 + 0.002 37.702 180","-37.804 -180 37.702 -0.009"],"time_start":"2017-11-05T00:00:02.000Z","updated":"2022-05-24T00:42:28.980Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-05T23:59:58.000Z","id":"G2276689959-POCLOUD","original_format":"UMM_JSON","granule_size":"16.941640853881836","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171105-000002-e20171105-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0.002 37.561 180","-37.644 -180 37.561 -0.001"],"time_start":"2017-11-06T00:00:02.000Z","updated":"2022-05-24T00:49:40.709Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-06T23:59:59.000Z","id":"G2276692868-POCLOUD","original_format":"UMM_JSON","granule_size":"17.073904037475586","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171106-000002-e20171106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0 37.48 180","-37.741 -180 37.48 0"],"time_start":"2017-11-07T00:00:02.000Z","updated":"2022-05-23T23:51:36.241Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-07T23:59:59.000Z","id":"G2276679895-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171107-000002-e20171107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.453 + 0.002 37.433 180","-37.453 -180 37.433 -0.001"],"time_start":"2017-11-08T00:00:02.000Z","updated":"2022-05-24T00:09:36.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-08T23:59:59.000Z","id":"G2276683708-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171108-000002-e20171108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0.003 37.949 180","-37.641 -180 37.949 -0.002"],"time_start":"2017-11-09T00:00:00.000Z","updated":"2022-05-24T00:46:36.594Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-09T23:59:59.000Z","id":"G2276690977-POCLOUD","original_format":"UMM_JSON","granule_size":"16.162121772766113","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171109-000000-e20171109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.627 + 0 37.831 180","-37.627 -180 37.831 0"],"time_start":"2017-11-10T00:00:01.000Z","updated":"2022-05-24T00:37:31.132Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-10T23:59:59.000Z","id":"G2276688927-POCLOUD","original_format":"UMM_JSON","granule_size":"14.741151809692383","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171110-000001-e20171110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.385 + 0 38.538 180","-37.385 -180 38.538 -0.003"],"time_start":"2017-11-11T00:00:00.000Z","updated":"2022-05-23T23:51:29.308Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-11T23:59:59.000Z","id":"G2276679861-POCLOUD","original_format":"UMM_JSON","granule_size":"13.480999946594238","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171111-000000-e20171111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.357 + 0.002 40.234 180","-37.357 -180 40.234 -0.007"],"time_start":"2017-11-12T00:00:01.000Z","updated":"2022-05-24T00:13:31.741Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-12T23:59:59.000Z","id":"G2276684594-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171112-000001-e20171112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.401 + 0 41.068 180","-37.401 -180 41.068 -0.002"],"time_start":"2017-11-13T00:00:01.000Z","updated":"2022-05-23T23:55:24.759Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-13T23:59:59.000Z","id":"G2276680414-POCLOUD","original_format":"UMM_JSON","granule_size":"13.023262977600098","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171113-000001-e20171113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.362 + 0.001 41.449 180","-37.362 -180 41.449 -0.001"],"time_start":"2017-11-14T00:00:01.000Z","updated":"2022-05-24T00:00:32.196Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-14T23:59:59.000Z","id":"G2276681451-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171114-000001-e20171114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.298 + 0.001 41.22 180","-37.298 -180 41.22 -0.002"],"time_start":"2017-11-15T00:00:01.000Z","updated":"2022-05-24T00:32:32.717Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-15T23:59:58.000Z","id":"G2276688093-POCLOUD","original_format":"UMM_JSON","granule_size":"13.353096008300781","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171115-000001-e20171115-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.218 + 0.003 41.749 180","-37.218 -180 41.749 -0.003"],"time_start":"2017-11-16T00:00:00.000Z","updated":"2022-05-24T00:28:34.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-16T23:59:58.000Z","id":"G2276687714-POCLOUD","original_format":"UMM_JSON","granule_size":"13.139546394348145","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171116-000000-e20171116-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.345 + 0.001 40.986 180","-37.345 -180 40.986 -0.006"],"time_start":"2017-11-17T00:00:01.000Z","updated":"2022-05-24T00:07:27.194Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-17T23:59:59.000Z","id":"G2276683029-POCLOUD","original_format":"UMM_JSON","granule_size":"13.046027183532715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171117-000001-e20171117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.457 + 0.008 39.504 180","-37.457 -180 39.504 -0.003"],"time_start":"2017-11-18T00:00:02.000Z","updated":"2022-05-24T00:26:33.652Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-18T23:59:59.000Z","id":"G2276687105-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171118-000002-e20171118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.223 + 0 39.151 180","-37.223 -180 39.151 -0.001"],"time_start":"2017-11-19T00:00:01.000Z","updated":"2022-05-24T00:26:33.937Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-19T23:59:59.000Z","id":"G2276687108-POCLOUD","original_format":"UMM_JSON","granule_size":"10.984292984008789","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171119-000001-e20171119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.308 + 0.001 38.37 180","-37.308 -180 38.37 -0.002"],"time_start":"2017-11-20T00:00:02.000Z","updated":"2022-05-24T00:27:24.229Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-20T23:59:59.000Z","id":"G2276687199-POCLOUD","original_format":"UMM_JSON","granule_size":"11.125941276550293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171120-000002-e20171120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.405 + 0.002 37.818 180","-37.405 -180 37.818 0"],"time_start":"2017-11-21T00:00:00.000Z","updated":"2022-05-23T23:47:34.106Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-21T23:59:59.000Z","id":"G2276677611-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171121-000000-e20171121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.385 + 0.005 38.119 180","-37.385 -180 38.119 -0.002"],"time_start":"2017-11-22T00:00:02.000Z","updated":"2022-05-24T00:42:34.259Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-22T23:59:59.000Z","id":"G2276690010-POCLOUD","original_format":"UMM_JSON","granule_size":"10.664220809936523","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171122-000002-e20171122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.399 + 0.002 39.144 180","-37.399 -180 39.144 -0.001"],"time_start":"2017-11-23T00:00:02.000Z","updated":"2022-05-24T00:20:32.445Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-23T23:59:59.000Z","id":"G2276685812-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171123-000002-e20171123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.352 + 0.001 40.889 180","-37.352 -180 40.889 -0.001"],"time_start":"2017-11-24T00:00:02.000Z","updated":"2022-05-24T00:09:26.115Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-24T23:59:58.000Z","id":"G2276683662-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171124-000002-e20171124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.639 + 0 41.002 180","-37.639 -180 41.002 0"],"time_start":"2017-11-25T00:00:02.000Z","updated":"2022-05-23T23:49:27.812Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-25T23:59:59.000Z","id":"G2276679555-POCLOUD","original_format":"UMM_JSON","granule_size":"11.502063751220703","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171125-000002-e20171125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.9 + 0.001 39.618 180","-37.9 -180 39.618 -0.004"],"time_start":"2017-11-26T00:00:02.000Z","updated":"2022-05-24T00:05:30.545Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-26T23:59:59.000Z","id":"G2276682631-POCLOUD","original_format":"UMM_JSON","granule_size":"13.229641914367676","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171126-000002-e20171126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.047 + 0.007 37.777 180","-38.047 -180 37.777 -0.001"],"time_start":"2017-11-27T00:00:02.000Z","updated":"2022-05-23T23:51:27.403Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-27T23:59:59.000Z","id":"G2276679856-POCLOUD","original_format":"UMM_JSON","granule_size":"14.03256607055664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171127-000002-e20171127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.944 + 0.001 37.897 180","-37.944 -180 37.897 -0.001"],"time_start":"2017-11-28T00:00:02.000Z","updated":"2022-05-23T23:58:31.285Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-28T23:59:58.000Z","id":"G2276681287-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171128-000002-e20171128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.343 + 0.001 37.886 180","-38.343 -180 37.886 -0.003"],"time_start":"2017-11-29T00:00:02.000Z","updated":"2022-05-24T00:00:32.020Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-29T23:59:59.000Z","id":"G2276681453-POCLOUD","original_format":"UMM_JSON","granule_size":"13.911704063415527","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171129-000002-e20171129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.929 + 0 37.609 180","-37.929 -180 37.609 0"],"time_start":"2017-11-30T00:00:00.000Z","updated":"2022-05-24T00:33:38.455Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-11-30T23:59:59.000Z","id":"G2276688649-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171130-000000-e20171130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.85 + 0.001 37.669 180","-37.85 -180 37.669 -0.003"],"time_start":"2017-12-01T00:00:02.000Z","updated":"2022-05-24T00:33:30.832Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-01T23:59:58.000Z","id":"G2276688634-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171201-000002-e20171201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.736 + 0 37.758 180","-37.736 -180 37.758 0"],"time_start":"2017-12-02T00:00:02.000Z","updated":"2022-05-24T00:09:38.126Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-02T23:59:59.000Z","id":"G2276683698-POCLOUD","original_format":"UMM_JSON","granule_size":"19.519591331481934","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171202-000002-e20171202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.727 + 0.005 37.466 180","-37.727 -180 37.466 0"],"time_start":"2017-12-03T00:00:01.000Z","updated":"2022-05-24T00:19:29.991Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-03T23:59:59.000Z","id":"G2276685722-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171203-000001-e20171203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.866 + 0.004 37.51 180","-37.866 -180 37.51 -0.002"],"time_start":"2017-12-04T00:00:00.000Z","updated":"2022-05-24T00:45:06.288Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-04T23:59:59.000Z","id":"G2276690229-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171204-000000-e20171204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.889 + 0.002 37.584 180","-37.889 -180 37.584 -0.003"],"time_start":"2017-12-05T00:00:01.000Z","updated":"2022-05-24T00:24:28.966Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-05T23:59:59.000Z","id":"G2276686841-POCLOUD","original_format":"UMM_JSON","granule_size":"16.043006896972656","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171205-000001-e20171205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.897 + 0.003 37.666 180","-37.897 -180 37.666 -0.001"],"time_start":"2017-12-06T00:00:02.000Z","updated":"2022-05-24T00:40:29.635Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-06T23:59:59.000Z","id":"G2276689606-POCLOUD","original_format":"UMM_JSON","granule_size":"16.460637092590332","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171206-000002-e20171206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.955 + 0.003 37.691 180","-37.955 -180 37.691 -0.004"],"time_start":"2017-12-07T00:00:02.000Z","updated":"2022-05-24T00:04:31.251Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-07T23:59:59.000Z","id":"G2276682450-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171207-000002-e20171207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.925 + 0 37.71 180","-37.925 -180 37.71 -0.001"],"time_start":"2017-12-08T00:00:02.000Z","updated":"2022-05-24T00:34:39.419Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-08T23:59:58.000Z","id":"G2276688736-POCLOUD","original_format":"UMM_JSON","granule_size":"18.647777557373047","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171208-000002-e20171208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.916 + 0.001 37.806 180","-37.916 -180 37.806 -0.001"],"time_start":"2017-12-09T00:00:01.000Z","updated":"2022-05-24T00:01:38.973Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-09T23:59:59.000Z","id":"G2276681557-POCLOUD","original_format":"UMM_JSON","granule_size":"18.73351287841797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171209-000001-e20171209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.842 + 0.001 37.759 180","-37.842 -180 37.759 -0.001"],"time_start":"2017-12-10T00:00:02.000Z","updated":"2022-05-24T00:37:34.056Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-10T23:59:59.000Z","id":"G2276688931-POCLOUD","original_format":"UMM_JSON","granule_size":"18.52281951904297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171210-000002-e20171210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0.002 37.611 180","-37.824 -180 37.611 0"],"time_start":"2017-12-11T00:00:00.000Z","updated":"2022-05-24T00:42:41.157Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-11T23:59:59.000Z","id":"G2276690042-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171211-000000-e20171211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.849 + 0.001 37.724 180","-37.849 -180 37.724 0"],"time_start":"2017-12-12T00:00:02.000Z","updated":"2022-05-24T00:29:34.605Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-12T23:59:58.000Z","id":"G2276687835-POCLOUD","original_format":"UMM_JSON","granule_size":"17.01891040802002","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171212-000002-e20171212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.829 + 0.003 37.559 180","-37.829 -180 37.559 -0.005"],"time_start":"2017-12-13T00:00:02.000Z","updated":"2022-05-24T00:45:06.171Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-13T23:59:59.000Z","id":"G2276690228-POCLOUD","original_format":"UMM_JSON","granule_size":"14.000926971435547","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171213-000002-e20171213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.784 + 0.003 37.62 180","-37.784 -180 37.62 -0.002"],"time_start":"2017-12-14T00:00:01.000Z","updated":"2022-05-24T00:11:35.456Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-14T23:59:59.000Z","id":"G2276683838-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171214-000001-e20171214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.722 + 0.004 37.707 180","-37.722 -180 37.707 -0.002"],"time_start":"2017-12-15T00:00:02.000Z","updated":"2022-05-24T00:14:26.695Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-15T23:59:59.000Z","id":"G2276684705-POCLOUD","original_format":"UMM_JSON","granule_size":"18.390074729919434","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171215-000002-e20171215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.656 + 0.002 37.604 180","-37.656 -180 37.604 -0.002"],"time_start":"2017-12-16T00:00:02.000Z","updated":"2022-05-24T00:26:34.609Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-16T23:59:59.000Z","id":"G2276687107-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171216-000002-e20171216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.568 + 0.004 37.64 180","-37.568 -180 37.64 -0.001"],"time_start":"2017-12-17T00:00:01.000Z","updated":"2022-05-24T00:28:36.524Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-17T23:59:59.000Z","id":"G2276687724-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171217-000001-e20171217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.631 + 0.003 37.581 180","-37.631 -180 37.581 -0.004"],"time_start":"2017-12-18T00:00:01.000Z","updated":"2022-05-23T23:50:35.302Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-18T23:59:59.000Z","id":"G2276679778-POCLOUD","original_format":"UMM_JSON","granule_size":"14.417991638183594","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171218-000001-e20171218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.668 + 0.001 37.658 180","-37.668 -180 37.658 0"],"time_start":"2017-12-19T00:00:01.000Z","updated":"2022-05-24T00:49:29.897Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-19T23:59:59.000Z","id":"G2276692650-POCLOUD","original_format":"UMM_JSON","granule_size":"14.193531036376953","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171219-000001-e20171219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.748 + 0 37.746 180","-37.748 -180 37.746 -0.001"],"time_start":"2017-12-20T00:00:02.000Z","updated":"2022-05-24T00:27:31.095Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-20T23:59:59.000Z","id":"G2276687222-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171220-000002-e20171220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.807 + 0 37.786 180","-37.807 -180 37.786 -0.001"],"time_start":"2017-12-21T00:00:01.000Z","updated":"2022-05-23T23:58:32.717Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-21T23:59:59.000Z","id":"G2276681288-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171221-000001-e20171221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.829 + 0.002 37.857 180","-37.829 -180 37.857 -0.006"],"time_start":"2017-12-22T00:00:02.000Z","updated":"2022-05-24T00:49:26.891Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-22T23:59:58.000Z","id":"G2276692589-POCLOUD","original_format":"UMM_JSON","granule_size":"14.623398780822754","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171222-000002-e20171222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.814 + 0.001 37.877 180","-37.814 -180 37.877 -0.003"],"time_start":"2017-12-23T00:00:02.000Z","updated":"2022-05-24T00:00:28.301Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-23T23:59:59.000Z","id":"G2276681442-POCLOUD","original_format":"UMM_JSON","granule_size":"14.58095932006836","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171223-000002-e20171223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.784 + 0 37.853 180","-37.784 -180 37.853 -0.001"],"time_start":"2017-12-24T00:00:02.000Z","updated":"2022-05-24T00:23:40.544Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-24T23:59:59.000Z","id":"G2276686724-POCLOUD","original_format":"UMM_JSON","granule_size":"14.418696403503418","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171224-000002-e20171224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.672 + 0 37.843 180","-37.672 -180 37.843 0"],"time_start":"2017-12-25T00:00:01.000Z","updated":"2022-05-24T00:49:26.564Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-25T23:59:59.000Z","id":"G2276692685-POCLOUD","original_format":"UMM_JSON","granule_size":"14.469770431518555","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171225-000001-e20171225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.547 + 0.001 37.647 180","-37.547 -180 37.647 -0.002"],"time_start":"2017-12-26T00:00:02.000Z","updated":"2022-05-24T00:34:34.705Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-26T23:59:59.000Z","id":"G2276688726-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171226-000002-e20171226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.531 + 0.003 37.712 180","-37.531 -180 37.712 0"],"time_start":"2017-12-27T00:00:02.000Z","updated":"2022-05-23T23:49:28.835Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-27T23:59:59.000Z","id":"G2276679617-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171227-000002-e20171227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.546 + 0 37.592 180","-37.546 -180 37.592 0"],"time_start":"2017-12-28T00:00:02.000Z","updated":"2022-05-24T00:25:31.443Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-28T23:59:59.000Z","id":"G2276686980-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171228-000002-e20171228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.567 + 0.002 37.868 180","-37.567 -180 37.868 0"],"time_start":"2017-12-29T00:00:02.000Z","updated":"2022-05-24T00:20:29.469Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-29T23:59:59.000Z","id":"G2276685810-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171229-000002-e20171229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.423 + 0.003 38.353 180","-37.423 -180 38.353 -0.002"],"time_start":"2017-12-30T00:00:02.000Z","updated":"2022-05-24T00:28:37.782Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-30T23:59:59.000Z","id":"G2276687726-POCLOUD","original_format":"UMM_JSON","granule_size":"13.181266784667969","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171230-000002-e20171230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.386 + 0.003 39.386 180","-37.386 -180 39.386 0"],"time_start":"2017-12-31T00:00:01.000Z","updated":"2022-05-24T00:23:28.719Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-12-31T23:59:59.000Z","id":"G2276686671-POCLOUD","original_format":"UMM_JSON","granule_size":"13.517127990722656","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20171231-000001-e20171231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.417 + 0.001 39.928 180","-37.417 -180 39.928 0"],"time_start":"2018-01-01T00:00:00.000Z","updated":"2022-05-23T23:50:34.371Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-01T23:59:59.000Z","id":"G2276679777-POCLOUD","original_format":"UMM_JSON","granule_size":"15.109720230102539","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180101-000000-e20180101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.331 + 0 39.436 180","-37.331 -180 39.436 0"],"time_start":"2018-01-02T00:00:01.000Z","updated":"2022-05-24T00:40:32.610Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-02T23:59:59.000Z","id":"G2276689613-POCLOUD","original_format":"UMM_JSON","granule_size":"15.091190338134766","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180102-000001-e20180102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.284 + 0.002 38.533 180","-37.284 -180 38.533 -0.002"],"time_start":"2018-01-03T00:00:00.000Z","updated":"2022-05-24T00:26:25.426Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-03T23:59:59.000Z","id":"G2276687085-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180103-000000-e20180103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.176 + 0.002 38.274 180","-37.176 -180 38.274 0"],"time_start":"2018-01-04T00:00:01.000Z","updated":"2022-05-23T23:57:34.331Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-04T23:59:59.000Z","id":"G2276680610-POCLOUD","original_format":"UMM_JSON","granule_size":"14.61801815032959","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180104-000001-e20180104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.235 + 0.001 38.937 180","-37.235 -180 38.937 0"],"time_start":"2018-01-05T00:00:02.000Z","updated":"2022-05-24T00:24:34.736Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-05T23:59:59.000Z","id":"G2276686859-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180105-000002-e20180105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.316 + 0.002 39.366 180","-37.316 -180 39.366 0"],"time_start":"2018-01-06T00:00:00.000Z","updated":"2022-05-24T00:20:03.621Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-06T23:59:59.000Z","id":"G2276685793-POCLOUD","original_format":"UMM_JSON","granule_size":"15.25671100616455","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180106-000000-e20180106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.462 + 0.001 37.552 180","-37.462 -180 37.552 -0.001"],"time_start":"2018-01-07T00:00:02.000Z","updated":"2022-05-24T00:45:34.501Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-07T23:59:59.000Z","id":"G2276690277-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180107-000002-e20180107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.428 + 0.003 38.543 180","-37.428 -180 38.543 0"],"time_start":"2018-01-08T00:00:02.000Z","updated":"2022-05-24T00:05:29.740Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-08T23:59:58.000Z","id":"G2276682616-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180108-000002-e20180108-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.402 + 0 39.676 180","-37.402 -180 39.676 -0.001"],"time_start":"2018-01-09T00:00:02.000Z","updated":"2022-05-24T00:37:42.702Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-09T23:59:59.000Z","id":"G2276688946-POCLOUD","original_format":"UMM_JSON","granule_size":"15.078197479248047","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180109-000002-e20180109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.476 + 0.001 38.389 180","-37.476 -180 38.389 0"],"time_start":"2018-01-10T00:00:02.000Z","updated":"2022-05-24T00:42:31.510Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-10T23:59:59.000Z","id":"G2276689974-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180110-000002-e20180110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.371 + 0.001 40.257 180","-37.371 -180 40.257 -0.001"],"time_start":"2018-01-11T00:00:00.000Z","updated":"2022-05-24T00:18:30.286Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-11T23:59:59.000Z","id":"G2276685619-POCLOUD","original_format":"UMM_JSON","granule_size":"14.916382789611816","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180111-000000-e20180111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.386 + 0.001 41.211 180","-37.386 -180 41.211 -0.001"],"time_start":"2018-01-12T00:00:02.000Z","updated":"2022-05-24T00:46:28.461Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-12T23:59:59.000Z","id":"G2276690865-POCLOUD","original_format":"UMM_JSON","granule_size":"14.364877700805664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180112-000002-e20180112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.259 + 0.001 39.459 180","-37.259 -180 39.459 -0.005"],"time_start":"2018-01-13T00:00:02.000Z","updated":"2022-05-24T00:01:31.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-13T23:59:59.000Z","id":"G2276681535-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180113-000002-e20180113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.436 + 0.001 37.468 180","-37.436 -180 37.468 -0.002"],"time_start":"2018-01-14T00:00:02.000Z","updated":"2022-05-24T00:41:32.298Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-14T23:59:59.000Z","id":"G2276689677-POCLOUD","original_format":"UMM_JSON","granule_size":"15.59000301361084","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180114-000002-e20180114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.557 + 0 37.496 180","-37.557 -180 37.496 -0.001"],"time_start":"2018-01-15T00:00:02.000Z","updated":"2022-05-24T00:09:29.535Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-15T23:59:59.000Z","id":"G2276683680-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180115-000002-e20180115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.659 + 0.003 37.603 180","-37.659 -180 37.603 0"],"time_start":"2018-01-16T00:00:02.000Z","updated":"2022-05-23T23:54:27.856Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-16T23:59:59.000Z","id":"G2276680353-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180116-000002-e20180116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0.001 37.533 180","-37.741 -180 37.533 -0.004"],"time_start":"2018-01-17T00:00:02.000Z","updated":"2022-05-23T23:55:25.980Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-17T23:59:58.000Z","id":"G2276680418-POCLOUD","original_format":"UMM_JSON","granule_size":"14.241872787475586","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180117-000002-e20180117-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.766 + 0.001 37.602 180","-37.766 -180 37.602 -0.001"],"time_start":"2018-01-18T00:00:02.000Z","updated":"2022-05-24T00:19:27.923Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-18T23:59:59.000Z","id":"G2276685708-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180118-000002-e20180118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.722 + 0.001 37.512 180","-37.722 -180 37.512 0"],"time_start":"2018-01-19T00:00:02.000Z","updated":"2022-05-24T00:40:30.458Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-19T23:59:58.000Z","id":"G2276689616-POCLOUD","original_format":"UMM_JSON","granule_size":"14.705968856811523","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180119-000002-e20180119-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.643 + 0 37.567 180","-37.643 -180 37.567 -0.003"],"time_start":"2018-01-20T00:00:02.000Z","updated":"2022-05-24T00:42:28.362Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-20T23:59:59.000Z","id":"G2276689956-POCLOUD","original_format":"UMM_JSON","granule_size":"14.727051734924316","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180120-000002-e20180120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.626 + 0.003 37.569 180","-37.626 -180 37.569 -0.002"],"time_start":"2018-01-21T00:00:02.000Z","updated":"2022-05-24T00:32:39.062Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-21T23:59:58.000Z","id":"G2276688326-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180121-000002-e20180121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.545 + 0.001 37.498 180","-37.545 -180 37.498 -0.001"],"time_start":"2018-01-22T00:00:02.000Z","updated":"2022-05-24T00:48:32.386Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-22T23:59:59.000Z","id":"G2276692145-POCLOUD","original_format":"UMM_JSON","granule_size":"14.303482055664062","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180122-000002-e20180122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.722 + 0.002 37.584 180","-37.722 -180 37.584 -0.005"],"time_start":"2018-01-23T00:00:02.000Z","updated":"2022-05-24T00:03:33.683Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-23T23:59:59.000Z","id":"G2276682041-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180123-000002-e20180123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.796 + 0.001 37.694 180","-37.796 -180 37.694 -0.001"],"time_start":"2018-01-24T00:00:02.000Z","updated":"2022-05-23T23:59:26.628Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-24T23:59:58.000Z","id":"G2276681320-POCLOUD","original_format":"UMM_JSON","granule_size":"14.028960227966309","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180124-000002-e20180124-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.848 + 0.001 37.703 180","-37.848 -180 37.703 0"],"time_start":"2018-01-25T00:00:01.000Z","updated":"2022-05-24T00:41:25.206Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-25T23:59:59.000Z","id":"G2276689659-POCLOUD","original_format":"UMM_JSON","granule_size":"13.807089805603027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180125-000001-e20180125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.84 + 0.002 37.785 180","-37.84 -180 37.785 -0.003"],"time_start":"2018-01-26T00:00:02.000Z","updated":"2022-05-24T00:13:30.066Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-26T23:59:59.000Z","id":"G2276684584-POCLOUD","original_format":"UMM_JSON","granule_size":"13.630565643310547","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180126-000002-e20180126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.76 + 0.001 37.661 180","-37.76 -180 37.661 -0.001"],"time_start":"2018-01-27T00:00:01.000Z","updated":"2022-05-24T00:41:31.070Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-27T23:59:59.000Z","id":"G2276689673-POCLOUD","original_format":"UMM_JSON","granule_size":"13.733839988708496","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180127-000001-e20180127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.744 + 0.001 37.741 180","-37.744 -180 37.741 -0.001"],"time_start":"2018-01-28T00:00:02.000Z","updated":"2022-05-23T23:53:25.745Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-28T23:59:59.000Z","id":"G2276680300-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180128-000002-e20180128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.654 + 0.001 37.672 180","-37.654 -180 37.672 -0.003"],"time_start":"2018-01-29T00:00:02.000Z","updated":"2022-05-24T00:31:30.533Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-29T23:59:59.000Z","id":"G2276688026-POCLOUD","original_format":"UMM_JSON","granule_size":"13.797259330749512","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180129-000002-e20180129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.645 + 0.002 37.7 180","-37.645 -180 37.7 -0.001"],"time_start":"2018-01-30T00:00:02.000Z","updated":"2022-05-23T23:53:36.769Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-30T23:59:59.000Z","id":"G2276680331-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180130-000002-e20180130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.613 + 0.005 37.693 180","-37.613 -180 37.693 0"],"time_start":"2018-01-31T00:00:02.000Z","updated":"2022-05-24T00:29:30.478Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-01-31T23:59:59.000Z","id":"G2276687834-POCLOUD","original_format":"UMM_JSON","granule_size":"13.455224990844727","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180131-000002-e20180131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.702 + 0.005 37.715 180","-37.702 -180 37.715 -0.001"],"time_start":"2018-02-01T00:00:02.000Z","updated":"2022-05-24T00:06:39.266Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-01T23:59:59.000Z","id":"G2276682864-POCLOUD","original_format":"UMM_JSON","granule_size":"11.320671081542969","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180201-000002-e20180201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.693 + 0 37.838 180","-37.693 -180 37.838 0"],"time_start":"2018-02-02T00:00:01.000Z","updated":"2022-05-24T00:02:28.063Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-02T23:59:59.000Z","id":"G2276681606-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180202-000001-e20180202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0.001 37.697 180","-37.824 -180 37.697 -0.002"],"time_start":"2018-02-03T00:00:01.000Z","updated":"2022-05-24T00:14:27.965Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-03T23:59:59.000Z","id":"G2276684707-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180203-000001-e20180203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.826 + 0.005 37.643 180","-37.826 -180 37.643 -0.001"],"time_start":"2018-02-04T00:00:02.000Z","updated":"2022-05-24T00:43:28.899Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-04T23:59:58.000Z","id":"G2276690095-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180204-000002-e20180204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.819 + 0.001 37.733 180","-37.819 -180 37.733 -0.003"],"time_start":"2018-02-05T00:00:02.000Z","updated":"2022-05-24T00:06:24.143Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-05T23:59:59.000Z","id":"G2276682826-POCLOUD","original_format":"UMM_JSON","granule_size":"11.72617244720459","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180205-000002-e20180205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0.002 37.714 180","-37.75 -180 37.714 0"],"time_start":"2018-02-06T00:00:02.000Z","updated":"2022-05-24T00:30:28.511Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-06T23:59:59.000Z","id":"G2276687918-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180206-000002-e20180206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.712 + 0.005 37.792 180","-37.712 -180 37.792 -0.001"],"time_start":"2018-02-07T00:00:00.000Z","updated":"2022-05-23T23:54:27.698Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-07T23:59:59.000Z","id":"G2276680354-POCLOUD","original_format":"UMM_JSON","granule_size":"11.634880065917969","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180207-000000-e20180207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.745 + 0.002 37.703 180","-37.745 -180 37.703 -0.004"],"time_start":"2018-02-08T00:00:00.000Z","updated":"2022-05-24T00:22:31.516Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-08T23:59:59.000Z","id":"G2276686508-POCLOUD","original_format":"UMM_JSON","granule_size":"11.238388061523438","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180208-000000-e20180208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.76 + 0.004 37.822 180","-37.76 -180 37.822 -0.001"],"time_start":"2018-02-09T00:00:02.000Z","updated":"2022-05-23T23:47:31.488Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-09T23:59:59.000Z","id":"G2276677585-POCLOUD","original_format":"UMM_JSON","granule_size":"13.680943489074707","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180209-000002-e20180209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.733 + 0 37.819 180","-37.733 -180 37.819 -0.001"],"time_start":"2018-02-10T00:00:02.000Z","updated":"2022-05-24T00:32:35.973Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-10T23:59:59.000Z","id":"G2276688144-POCLOUD","original_format":"UMM_JSON","granule_size":"13.909175872802734","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180210-000002-e20180210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.744 + 0.001 37.761 180","-37.744 -180 37.761 -0.001"],"time_start":"2018-02-11T00:00:02.000Z","updated":"2022-05-24T00:05:25.341Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-11T23:59:59.000Z","id":"G2276682602-POCLOUD","original_format":"UMM_JSON","granule_size":"13.732614517211914","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180211-000002-e20180211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0.001 37.65 180","-37.644 -180 37.65 -0.001"],"time_start":"2018-02-12T00:00:02.000Z","updated":"2022-05-24T00:30:31.163Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-12T23:59:59.000Z","id":"G2276687922-POCLOUD","original_format":"UMM_JSON","granule_size":"13.774040222167969","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180212-000002-e20180212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.549 + 0.001 37.668 180","-37.549 -180 37.668 -0.002"],"time_start":"2018-02-13T00:00:02.000Z","updated":"2022-05-23T23:55:32.129Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-13T23:59:59.000Z","id":"G2276680431-POCLOUD","original_format":"UMM_JSON","granule_size":"13.919628143310547","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180213-000002-e20180213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.599 + 0 37.581 180","-37.599 -180 37.581 0"],"time_start":"2018-02-14T00:00:00.000Z","updated":"2022-05-24T00:24:38.040Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-14T23:59:59.000Z","id":"G2276686880-POCLOUD","original_format":"UMM_JSON","granule_size":"14.341781616210938","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180214-000000-e20180214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.651 + 0 37.617 180","-37.651 -180 37.617 -0.003"],"time_start":"2018-02-15T00:00:02.000Z","updated":"2022-05-24T00:37:26.547Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-15T23:59:59.000Z","id":"G2276688916-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180215-000002-e20180215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.779 + 0.002 37.756 180","-37.779 -180 37.756 -0.003"],"time_start":"2018-02-16T00:00:02.000Z","updated":"2022-05-24T00:12:33.569Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-16T23:59:59.000Z","id":"G2276683939-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180216-000002-e20180216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.826 + 0.002 37.785 180","-37.826 -180 37.785 -0.001"],"time_start":"2018-02-17T00:00:02.000Z","updated":"2022-05-24T00:03:25.038Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-17T23:59:59.000Z","id":"G2276682015-POCLOUD","original_format":"UMM_JSON","granule_size":"15.720354080200195","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180217-000002-e20180217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.851 + 0 37.788 180","-37.851 -180 37.788 -0.001"],"time_start":"2018-02-18T00:00:02.000Z","updated":"2022-05-23T23:57:38.681Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-18T23:59:59.000Z","id":"G2276680888-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180218-000002-e20180218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.881 + 0.001 37.784 180","-37.881 -180 37.784 0"],"time_start":"2018-02-19T00:00:01.000Z","updated":"2022-05-24T00:43:29.470Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-19T23:59:59.000Z","id":"G2276690092-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180219-000001-e20180219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.859 + 0 37.759 180","-37.859 -180 37.759 -0.001"],"time_start":"2018-02-20T00:00:01.000Z","updated":"2022-05-23T23:52:26.892Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-20T23:59:59.000Z","id":"G2276680063-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180220-000001-e20180220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.822 + 0 37.981 180","-37.822 -180 37.981 -0.001"],"time_start":"2018-02-21T00:00:00.000Z","updated":"2022-05-24T00:01:29.679Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-21T23:59:59.000Z","id":"G2276681523-POCLOUD","original_format":"UMM_JSON","granule_size":"16.423434257507324","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180221-000000-e20180221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0 37.689 180","-37.73 -180 37.689 0"],"time_start":"2018-02-22T00:00:01.000Z","updated":"2022-05-23T23:48:30.604Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-22T23:59:59.000Z","id":"G2276678975-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180222-000001-e20180222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.266 + 0.001 37.644 180","-37.266 -180 37.644 -0.002"],"time_start":"2018-02-23T00:00:02.000Z","updated":"2022-05-24T00:26:31.728Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-23T23:59:59.000Z","id":"G2276687106-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180223-000002-e20180223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.422 + 0.002 38.177 180","-37.422 -180 38.177 -0.003"],"time_start":"2018-02-24T00:00:00.000Z","updated":"2022-05-23T23:49:24.362Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-24T23:59:59.000Z","id":"G2276679508-POCLOUD","original_format":"UMM_JSON","granule_size":"12.741653442382812","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180224-000000-e20180224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.412 + 0 38.156 180","-37.412 -180 38.156 0"],"time_start":"2018-02-25T00:00:02.000Z","updated":"2022-05-24T00:18:27.861Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-25T23:59:59.000Z","id":"G2276685614-POCLOUD","original_format":"UMM_JSON","granule_size":"12.453592300415039","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180225-000002-e20180225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.465 + 0 38.142 180","-37.465 -180 38.142 -0.002"],"time_start":"2018-02-26T00:00:02.000Z","updated":"2022-05-23T23:52:23.334Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-26T23:59:59.000Z","id":"G2276679942-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180226-000002-e20180226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.492 + 0.003 37.953 180","-37.492 -180 37.953 0"],"time_start":"2018-02-27T00:00:01.000Z","updated":"2022-05-24T00:26:37.730Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-27T23:59:59.000Z","id":"G2276687125-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180227-000001-e20180227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.55 + 0.001 37.723 180","-37.55 -180 37.723 -0.001"],"time_start":"2018-02-28T00:00:01.000Z","updated":"2022-05-24T00:11:30.940Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-02-28T23:59:58.000Z","id":"G2276683826-POCLOUD","original_format":"UMM_JSON","granule_size":"14.791790008544922","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180228-000001-e20180228-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.001 37.582 180","-37.669 -180 37.582 -0.005"],"time_start":"2018-03-01T00:00:02.000Z","updated":"2022-05-24T00:48:30.078Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-01T23:59:59.000Z","id":"G2276692142-POCLOUD","original_format":"UMM_JSON","granule_size":"12.903193473815918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180301-000002-e20180301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0.002 37.5 180","-37.636 -180 37.5 -0.003"],"time_start":"2018-03-02T00:00:02.000Z","updated":"2022-05-24T00:32:32.776Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-02T23:59:59.000Z","id":"G2276688096-POCLOUD","original_format":"UMM_JSON","granule_size":"13.22862720489502","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180302-000002-e20180302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.489 + 0 37.457 180","-37.489 -180 37.457 -0.001"],"time_start":"2018-03-03T00:00:02.000Z","updated":"2022-05-24T00:09:30.120Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-03T23:59:59.000Z","id":"G2276683683-POCLOUD","original_format":"UMM_JSON","granule_size":"13.605944633483887","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180303-000002-e20180303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.539 + 0 37.3 180","-37.539 -180 37.3 -0.004"],"time_start":"2018-03-04T00:00:01.000Z","updated":"2022-05-24T00:16:26.070Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-04T23:59:59.000Z","id":"G2276685042-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180304-000001-e20180304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.605 + 0 37.423 180","-37.605 -180 37.423 -0.005"],"time_start":"2018-03-05T00:00:00.000Z","updated":"2022-05-23T23:49:23.971Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-05T23:59:59.000Z","id":"G2276679504-POCLOUD","original_format":"UMM_JSON","granule_size":"13.769515037536621","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180305-000000-e20180305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0.005 37.549 180","-37.616 -180 37.549 -0.003"],"time_start":"2018-03-06T00:00:02.000Z","updated":"2022-05-24T00:40:30.566Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-06T23:59:59.000Z","id":"G2276689610-POCLOUD","original_format":"UMM_JSON","granule_size":"13.974828720092773","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180306-000002-e20180306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0.005 37.508 180","-37.632 -180 37.508 -0.001"],"time_start":"2018-03-07T00:00:02.000Z","updated":"2022-05-23T23:52:24.492Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-07T23:59:59.000Z","id":"G2276679943-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180307-000002-e20180307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0.001 37.565 180","-37.623 -180 37.565 0"],"time_start":"2018-03-08T00:00:02.000Z","updated":"2022-05-24T00:47:35.408Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-08T23:59:58.000Z","id":"G2276691765-POCLOUD","original_format":"UMM_JSON","granule_size":"14.019697189331055","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180308-000002-e20180308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.563 + 0.002 37.524 180","-37.563 -180 37.524 -0.001"],"time_start":"2018-03-09T00:00:01.000Z","updated":"2022-05-24T00:19:29.162Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-09T23:59:59.000Z","id":"G2276685717-POCLOUD","original_format":"UMM_JSON","granule_size":"14.696944236755371","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180309-000001-e20180309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.561 + 0.002 37.551 180","-37.561 -180 37.551 -0.001"],"time_start":"2018-03-10T00:00:02.000Z","updated":"2022-05-23T23:58:24.720Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-10T23:57:25.000Z","id":"G2276681261-POCLOUD","original_format":"UMM_JSON","granule_size":"13.985275268554688","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180310-000002-e20180310-235725.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.561 + 0.001 37.477 180","-37.561 -180 37.477 -0.002"],"time_start":"2018-03-11T00:00:18.000Z","updated":"2022-05-24T00:01:28.089Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-11T23:59:58.000Z","id":"G2276681520-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180311-000018-e20180311-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.492 + 0.004 37.536 180","-37.492 -180 37.536 -0.001"],"time_start":"2018-03-12T00:00:00.000Z","updated":"2022-05-23T23:56:33.626Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-12T23:59:58.000Z","id":"G2276680529-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180312-000000-e20180312-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.464 + 0.004 37.56 180","-37.464 -180 37.56 -0.001"],"time_start":"2018-03-13T00:00:01.000Z","updated":"2022-05-24T00:47:29.604Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-13T23:59:59.000Z","id":"G2276691692-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180313-000001-e20180313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.455 + 0.002 37.661 180","-37.455 -180 37.661 -0.002"],"time_start":"2018-03-14T00:00:02.000Z","updated":"2022-05-24T00:15:44.240Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-14T23:59:59.000Z","id":"G2276685016-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180314-000002-e20180314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.587 + 0.001 37.664 180","-37.587 -180 37.664 0"],"time_start":"2018-03-15T00:00:02.000Z","updated":"2022-05-24T00:14:32.234Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-15T23:59:59.000Z","id":"G2276684723-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180315-000002-e20180315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.664 + 0.002 37.62 180","-37.664 -180 37.62 -0.005"],"time_start":"2018-03-16T00:00:02.000Z","updated":"2022-05-24T00:06:39.792Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-16T23:59:58.000Z","id":"G2276682869-POCLOUD","original_format":"UMM_JSON","granule_size":"13.760684967041016","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180316-000002-e20180316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.665 + 0.001 37.572 180","-37.665 -180 37.572 -0.001"],"time_start":"2018-03-17T00:00:00.000Z","updated":"2022-05-24T00:20:35.188Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-17T23:59:59.000Z","id":"G2276685823-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180317-000000-e20180317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.63 + 0 37.554 180","-37.63 -180 37.554 -0.001"],"time_start":"2018-03-18T00:00:02.000Z","updated":"2022-05-24T00:33:25.336Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-18T23:59:59.000Z","id":"G2276688624-POCLOUD","original_format":"UMM_JSON","granule_size":"13.911046028137207","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180318-000002-e20180318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.56 + 0.014 37.63 180","-37.56 -180 37.63 -0.001"],"time_start":"2018-03-19T00:00:02.000Z","updated":"2022-05-24T00:35:35.832Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-19T23:59:59.000Z","id":"G2276688801-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180319-000002-e20180319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.544 + 0.003 37.593 180","-37.544 -180 37.593 -0.006"],"time_start":"2018-03-20T00:00:02.000Z","updated":"2022-05-24T00:43:34.959Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-20T23:59:59.000Z","id":"G2276690101-POCLOUD","original_format":"UMM_JSON","granule_size":"13.707515716552734","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180320-000002-e20180320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.476 + 0.007 37.612 180","-37.476 -180 37.612 -0.001"],"time_start":"2018-03-21T00:00:01.000Z","updated":"2022-05-24T00:28:33.131Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-21T23:59:59.000Z","id":"G2276687703-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180321-000001-e20180321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.665 + 0.002 37.626 180","-37.665 -180 37.626 -0.007"],"time_start":"2018-03-22T00:00:02.000Z","updated":"2022-05-24T00:34:33.993Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-22T23:59:59.000Z","id":"G2276688722-POCLOUD","original_format":"UMM_JSON","granule_size":"13.246664047241211","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180322-000002-e20180322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0.006 37.754 180","-37.741 -180 37.754 -0.001"],"time_start":"2018-03-23T00:00:00.000Z","updated":"2022-05-24T00:20:29.654Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-23T23:59:59.000Z","id":"G2276685805-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180323-000000-e20180323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.804 + 0.001 37.727 180","-37.804 -180 37.727 -0.001"],"time_start":"2018-03-24T00:00:02.000Z","updated":"2022-05-23T23:54:26.748Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-24T23:59:59.000Z","id":"G2276680351-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180324-000002-e20180324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.813 + 0.005 37.741 180","-37.813 -180 37.741 -0.003"],"time_start":"2018-03-25T00:00:02.000Z","updated":"2022-05-24T00:17:36.843Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-25T23:59:59.000Z","id":"G2276685273-POCLOUD","original_format":"UMM_JSON","granule_size":"13.343233108520508","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180325-000002-e20180325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.784 + 0.001 37.818 180","-37.784 -180 37.818 -0.001"],"time_start":"2018-03-26T00:00:01.000Z","updated":"2022-05-24T00:15:31.620Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-26T23:59:59.000Z","id":"G2276684986-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180326-000001-e20180326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.767 + 0.001 37.752 180","-37.767 -180 37.752 -0.002"],"time_start":"2018-03-27T00:00:02.000Z","updated":"2022-05-23T23:57:32.837Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-27T23:59:59.000Z","id":"G2276680581-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180327-000002-e20180327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.739 + 0 37.633 180","-37.739 -180 37.633 -0.002"],"time_start":"2018-03-28T00:00:00.000Z","updated":"2022-05-24T00:20:28.631Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-28T23:59:59.000Z","id":"G2276685803-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180328-000000-e20180328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.706 + 0 37.661 180","-37.706 -180 37.661 0"],"time_start":"2018-03-29T00:00:00.000Z","updated":"2022-05-24T00:47:29.762Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-29T23:59:59.000Z","id":"G2276691698-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180329-000000-e20180329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.596 + 0 37.657 180","-37.596 -180 37.657 -0.001"],"time_start":"2018-03-30T00:00:02.000Z","updated":"2022-05-23T23:55:54.388Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-30T23:59:59.000Z","id":"G2276680463-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180330-000002-e20180330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.726 + 0.001 37.564 180","-37.726 -180 37.564 -0.004"],"time_start":"2018-03-31T00:00:02.000Z","updated":"2022-05-24T00:10:33.269Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-03-31T23:59:58.000Z","id":"G2276683760-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180331-000002-e20180331-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.786 + 0 37.672 180","-37.786 -180 37.672 -0.002"],"time_start":"2018-04-01T00:00:01.000Z","updated":"2022-05-24T00:10:34.546Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-01T23:59:59.000Z","id":"G2276683765-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180401-000001-e20180401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.826 + 0.003 37.655 180","-37.826 -180 37.655 -0.002"],"time_start":"2018-04-02T00:00:01.000Z","updated":"2022-05-24T00:31:25.914Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-02T23:59:59.000Z","id":"G2276688000-POCLOUD","original_format":"UMM_JSON","granule_size":"13.770256996154785","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180402-000001-e20180402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.903 + 0.003 37.78 180","-37.903 -180 37.78 -0.003"],"time_start":"2018-04-03T00:00:01.000Z","updated":"2022-05-24T00:23:25.277Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-03T23:59:59.000Z","id":"G2276686659-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180403-000001-e20180403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.922 + 0.002 37.689 180","-37.922 -180 37.689 -0.006"],"time_start":"2018-04-04T00:00:02.000Z","updated":"2022-05-23T23:56:25.146Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-04T23:59:59.000Z","id":"G2276680494-POCLOUD","original_format":"UMM_JSON","granule_size":"11.494695663452148","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180404-000002-e20180404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.857 + 0 37.663 180","-37.857 -180 37.663 -0.006"],"time_start":"2018-04-05T00:00:02.000Z","updated":"2022-05-24T00:42:35.677Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-05T23:59:59.000Z","id":"G2276690001-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180405-000002-e20180405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.814 + 0.002 37.756 180","-37.814 -180 37.756 -0.001"],"time_start":"2018-04-06T00:00:02.000Z","updated":"2022-05-23T23:50:32.709Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-06T23:59:59.000Z","id":"G2276679770-POCLOUD","original_format":"UMM_JSON","granule_size":"13.623199462890625","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180406-000002-e20180406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.802 + 0 37.657 180","-37.802 -180 37.657 -0.001"],"time_start":"2018-04-07T00:00:01.000Z","updated":"2022-05-23T23:47:33.871Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-07T23:59:59.000Z","id":"G2276677618-POCLOUD","original_format":"UMM_JSON","granule_size":"13.596037864685059","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180407-000001-e20180407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.868 + 0 37.677 180","-37.868 -180 37.677 -0.003"],"time_start":"2018-04-08T00:00:02.000Z","updated":"2022-05-23T23:54:29.088Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-08T23:59:59.000Z","id":"G2276680359-POCLOUD","original_format":"UMM_JSON","granule_size":"13.30635929107666","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180408-000002-e20180408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.862 + 0.001 37.609 180","-37.862 -180 37.609 0"],"time_start":"2018-04-09T00:00:00.000Z","updated":"2022-05-23T23:55:29.857Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-09T23:59:59.000Z","id":"G2276680426-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180409-000000-e20180409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.836 + 0.003 37.722 180","-37.836 -180 37.722 -0.002"],"time_start":"2018-04-10T00:00:02.000Z","updated":"2022-05-24T00:23:32.352Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-10T23:59:59.000Z","id":"G2276686677-POCLOUD","original_format":"UMM_JSON","granule_size":"13.7783203125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180410-000002-e20180410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.734 + 0.001 37.737 180","-37.734 -180 37.737 -0.002"],"time_start":"2018-04-11T00:00:02.000Z","updated":"2022-05-23T23:48:28.702Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-11T23:59:59.000Z","id":"G2276678924-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180411-000002-e20180411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.687 + 0.002 37.538 180","-37.687 -180 37.538 -0.003"],"time_start":"2018-04-12T00:00:02.000Z","updated":"2022-05-24T00:05:29.948Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-12T23:59:59.000Z","id":"G2276682613-POCLOUD","original_format":"UMM_JSON","granule_size":"13.597380638122559","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180412-000002-e20180412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.517 + 0.005 37.532 180","-37.517 -180 37.532 0"],"time_start":"2018-04-13T00:00:01.000Z","updated":"2022-05-24T00:47:36.980Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-13T23:59:59.000Z","id":"G2276691770-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180413-000001-e20180413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.702 + 0 37.612 180","-37.702 -180 37.612 -0.003"],"time_start":"2018-04-14T00:00:02.000Z","updated":"2022-05-23T23:55:38.134Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-14T23:59:59.000Z","id":"G2276680445-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180414-000002-e20180414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.728 + 0 37.693 180","-37.728 -180 37.693 -0.001"],"time_start":"2018-04-15T00:00:01.000Z","updated":"2022-05-23T23:47:33.818Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-15T23:59:59.000Z","id":"G2276677619-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180415-000001-e20180415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.787 + 0.001 37.714 180","-37.787 -180 37.714 -0.002"],"time_start":"2018-04-16T00:00:01.000Z","updated":"2022-05-23T23:49:32.249Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-16T23:59:59.000Z","id":"G2276679620-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180416-000001-e20180416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.831 + 0.002 37.764 180","-37.831 -180 37.764 -0.002"],"time_start":"2018-04-17T00:00:02.000Z","updated":"2022-05-24T00:28:35.474Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-17T23:59:59.000Z","id":"G2276687723-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180417-000002-e20180417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.849 + 0.001 37.823 180","-37.849 -180 37.823 -0.002"],"time_start":"2018-04-18T00:00:00.000Z","updated":"2022-05-24T00:48:33.036Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-18T23:59:59.000Z","id":"G2276692115-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180418-000000-e20180418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.827 + 0 37.8 180","-37.827 -180 37.8 -0.001"],"time_start":"2018-04-19T00:00:01.000Z","updated":"2022-05-24T00:16:25.844Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-19T23:59:59.000Z","id":"G2276685040-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180419-000001-e20180419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.788 + 0.001 37.858 180","-37.788 -180 37.858 0"],"time_start":"2018-04-20T00:00:02.000Z","updated":"2022-05-24T00:00:30.637Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-20T23:59:59.000Z","id":"G2276681446-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180420-000002-e20180420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.682 + 0.001 39.049 180","-37.682 -180 39.049 -0.002"],"time_start":"2018-04-21T00:00:02.000Z","updated":"2022-05-24T00:37:36.955Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-21T23:59:59.000Z","id":"G2276688938-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180421-000002-e20180421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.484 + 0.001 37.702 180","-37.484 -180 37.702 -0.001"],"time_start":"2018-04-22T00:00:01.000Z","updated":"2022-05-24T00:04:47.926Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-22T23:59:59.000Z","id":"G2276682483-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180422-000001-e20180422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.432 + 0.005 37.635 180","-37.432 -180 37.635 -0.005"],"time_start":"2018-04-23T00:00:02.000Z","updated":"2022-05-23T23:51:30.529Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-23T23:59:58.000Z","id":"G2276679863-POCLOUD","original_format":"UMM_JSON","granule_size":"11.559226036071777","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180423-000002-e20180423-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.588 + 0.004 37.513 180","-37.588 -180 37.513 0"],"time_start":"2018-04-24T00:00:02.000Z","updated":"2022-05-24T00:37:25.836Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-24T23:59:59.000Z","id":"G2276688914-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180424-000002-e20180424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.614 + 0.003 37.498 180","-37.614 -180 37.498 -0.001"],"time_start":"2018-04-25T00:00:02.000Z","updated":"2022-05-24T00:21:35.421Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-25T23:59:59.000Z","id":"G2276685922-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180425-000002-e20180425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.535 + 0.001 37.578 180","-37.535 -180 37.578 -0.002"],"time_start":"2018-04-26T00:00:02.000Z","updated":"2022-05-24T00:41:24.668Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-26T23:59:58.000Z","id":"G2276689658-POCLOUD","original_format":"UMM_JSON","granule_size":"14.116533279418945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180426-000002-e20180426-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.541 + 0.001 37.612 180","-37.541 -180 37.612 -0.001"],"time_start":"2018-04-27T00:00:02.000Z","updated":"2022-05-24T00:06:40.449Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-27T23:59:58.000Z","id":"G2276682871-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180427-000002-e20180427-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.59 + 0.005 37.514 180","-37.59 -180 37.514 -0.001"],"time_start":"2018-04-28T00:00:01.000Z","updated":"2022-05-24T00:44:36.368Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-28T23:59:59.000Z","id":"G2276690187-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180428-000001-e20180428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.544 + 0.001 37.632 180","-37.544 -180 37.632 -0.002"],"time_start":"2018-04-29T00:00:01.000Z","updated":"2022-05-24T00:40:30.510Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-29T23:59:59.000Z","id":"G2276689621-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180429-000001-e20180429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.444 + 0.002 37.571 180","-37.444 -180 37.571 -0.001"],"time_start":"2018-04-30T00:00:00.000Z","updated":"2022-05-24T00:32:28.377Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-04-30T23:59:59.000Z","id":"G2276688084-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180430-000000-e20180430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.433 + 0.002 37.724 180","-37.433 -180 37.724 -0.002"],"time_start":"2018-05-01T00:00:02.000Z","updated":"2022-05-24T00:18:31.424Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-01T23:59:58.000Z","id":"G2276685621-POCLOUD","original_format":"UMM_JSON","granule_size":"13.716464042663574","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180501-000002-e20180501-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.499 + 0.001 37.574 180","-37.499 -180 37.574 0"],"time_start":"2018-05-02T00:00:02.000Z","updated":"2022-05-23T23:52:28.545Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-02T23:59:58.000Z","id":"G2276680246-POCLOUD","original_format":"UMM_JSON","granule_size":"16.06802749633789","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180502-000002-e20180502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.605 + 0.001 37.587 180","-37.605 -180 37.587 -0.002"],"time_start":"2018-05-03T00:00:02.000Z","updated":"2022-05-24T00:09:29.335Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-03T23:59:59.000Z","id":"G2276683679-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180503-000002-e20180503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.592 + 0.001 37.532 180","-37.592 -180 37.532 0"],"time_start":"2018-05-04T00:00:01.000Z","updated":"2022-05-24T00:42:30.026Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-04T23:59:59.000Z","id":"G2276689970-POCLOUD","original_format":"UMM_JSON","granule_size":"16.485185623168945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180504-000001-e20180504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.659 + 0.001 37.539 180","-37.659 -180 37.539 0"],"time_start":"2018-05-05T00:00:02.000Z","updated":"2022-05-23T23:50:41.768Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-05T23:59:59.000Z","id":"G2276679813-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180505-000002-e20180505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.568 + 0.003 37.608 180","-37.568 -180 37.608 -0.006"],"time_start":"2018-05-06T00:00:00.000Z","updated":"2022-05-24T00:09:38.516Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-06T23:59:59.000Z","id":"G2276683707-POCLOUD","original_format":"UMM_JSON","granule_size":"17.708330154418945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180506-000000-e20180506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.271 + 0.003 37.418 180","-38.271 -180 37.418 -0.004"],"time_start":"2018-05-07T00:00:02.000Z","updated":"2022-05-24T00:18:32.950Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-07T23:59:59.000Z","id":"G2276685629-POCLOUD","original_format":"UMM_JSON","granule_size":"12.212942123413086","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180507-000002-e20180507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.276 + 0 37.282 180","-38.276 -180 37.282 -0.002"],"time_start":"2018-05-08T00:00:00.000Z","updated":"2022-05-24T00:38:28.220Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-08T23:59:59.000Z","id":"G2276689496-POCLOUD","original_format":"UMM_JSON","granule_size":"12.491809844970703","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180508-000000-e20180508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.093 + 0.001 37.224 180","-38.093 -180 37.224 -0.002"],"time_start":"2018-05-09T00:00:02.000Z","updated":"2022-05-24T00:03:26.756Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-09T23:59:59.000Z","id":"G2276682019-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180509-000002-e20180509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.3 + 0.001 37.218 180","-38.3 -180 37.218 -0.004"],"time_start":"2018-05-10T00:00:01.000Z","updated":"2022-05-24T00:08:31.229Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-10T23:59:59.000Z","id":"G2276683593-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180510-000001-e20180510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.638 + 0.004 37.152 180","-38.638 -180 37.152 -0.004"],"time_start":"2018-05-11T00:00:02.000Z","updated":"2022-05-24T00:49:28.722Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-11T23:59:59.000Z","id":"G2276692643-POCLOUD","original_format":"UMM_JSON","granule_size":"12.79103946685791","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180511-000002-e20180511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.356 + 0.006 37.259 180","-38.356 -180 37.259 -0.005"],"time_start":"2018-05-12T00:00:02.000Z","updated":"2022-05-24T00:21:30.525Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-12T23:59:59.000Z","id":"G2276685904-POCLOUD","original_format":"UMM_JSON","granule_size":"12.753886222839355","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180512-000002-e20180512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.726 + 0.004 37.345 180","-38.726 -180 37.345 -0.002"],"time_start":"2018-05-13T00:00:01.000Z","updated":"2022-05-23T23:49:30.729Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-13T23:59:59.000Z","id":"G2276679618-POCLOUD","original_format":"UMM_JSON","granule_size":"12.720297813415527","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180513-000001-e20180513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.681 + 0.002 37.369 180","-38.681 -180 37.369 -0.001"],"time_start":"2018-05-14T00:00:02.000Z","updated":"2022-05-24T00:07:27.887Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-14T23:59:58.000Z","id":"G2276683126-POCLOUD","original_format":"UMM_JSON","granule_size":"12.37509536743164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180514-000002-e20180514-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.437 + 0.003 37.357 180","-38.437 -180 37.357 -0.004"],"time_start":"2018-05-15T00:00:00.000Z","updated":"2022-05-24T00:37:37.714Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-15T23:59:58.000Z","id":"G2276688940-POCLOUD","original_format":"UMM_JSON","granule_size":"12.481159210205078","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180515-000000-e20180515-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.626 + 0.001 37.444 180","-37.626 -180 37.444 -0.003"],"time_start":"2018-05-16T00:00:01.000Z","updated":"2022-05-24T00:24:32.027Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-16T23:59:59.000Z","id":"G2276686849-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180516-000001-e20180516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.088 + 0.002 37.343 180","-38.088 -180 37.343 -0.003"],"time_start":"2018-05-17T00:00:02.000Z","updated":"2022-05-24T00:35:32.885Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-17T23:59:59.000Z","id":"G2276688793-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180517-000002-e20180517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.283 + 0.002 37.271 180","-38.283 -180 37.271 0"],"time_start":"2018-05-18T00:00:02.000Z","updated":"2022-05-23T23:59:31.873Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-18T23:59:59.000Z","id":"G2276681342-POCLOUD","original_format":"UMM_JSON","granule_size":"11.514628410339355","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180518-000002-e20180518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.703 + 0.001 37.534 180","-37.703 -180 37.534 -0.001"],"time_start":"2018-05-19T00:00:02.000Z","updated":"2022-05-24T00:32:33.470Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-19T23:59:59.000Z","id":"G2276688098-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180519-000002-e20180519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.52 + 0.003 37.718 180","-38.52 -180 37.718 0"],"time_start":"2018-05-20T00:00:01.000Z","updated":"2022-05-24T00:07:33.168Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-20T23:59:59.000Z","id":"G2276683496-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180520-000001-e20180520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.827 + 0.001 37.689 180","-37.827 -180 37.689 -0.002"],"time_start":"2018-05-21T00:00:00.000Z","updated":"2022-05-24T00:19:28.802Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-21T23:59:59.000Z","id":"G2276685709-POCLOUD","original_format":"UMM_JSON","granule_size":"11.693488121032715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180521-000000-e20180521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.849 + 0.001 37.652 180","-37.849 -180 37.652 -0.003"],"time_start":"2018-05-22T00:00:02.000Z","updated":"2022-05-24T00:39:33.223Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-22T23:59:59.000Z","id":"G2276689564-POCLOUD","original_format":"UMM_JSON","granule_size":"11.362041473388672","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180522-000002-e20180522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.852 + 0.003 37.708 180","-37.852 -180 37.708 -0.001"],"time_start":"2018-05-23T00:00:02.000Z","updated":"2022-05-23T23:58:29.981Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-23T23:59:58.000Z","id":"G2276681284-POCLOUD","original_format":"UMM_JSON","granule_size":"11.342656135559082","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180523-000002-e20180523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.799 + 0 37.742 180","-37.799 -180 37.742 0"],"time_start":"2018-05-24T00:00:02.000Z","updated":"2022-05-24T00:02:24.965Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-24T23:59:59.000Z","id":"G2276681598-POCLOUD","original_format":"UMM_JSON","granule_size":"11.03748893737793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180524-000002-e20180524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.731 + 0.004 37.664 180","-37.731 -180 37.664 -0.001"],"time_start":"2018-05-25T00:00:02.000Z","updated":"2022-05-24T00:49:24.019Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-25T23:59:59.000Z","id":"G2276692715-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180525-000002-e20180525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0 37.669 180","-37.669 -180 37.669 -0.002"],"time_start":"2018-05-26T00:00:03.000Z","updated":"2022-05-23T23:55:54.837Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-26T23:59:58.000Z","id":"G2276680462-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180526-000003-e20180526-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.592 + 0 37.671 180","-37.592 -180 37.671 -0.002"],"time_start":"2018-05-27T00:00:02.000Z","updated":"2022-05-24T00:09:34.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-27T23:59:59.000Z","id":"G2276683691-POCLOUD","original_format":"UMM_JSON","granule_size":"11.526151657104492","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180527-000002-e20180527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.578 + 0.005 37.663 180","-37.578 -180 37.663 -0.001"],"time_start":"2018-05-28T00:00:02.000Z","updated":"2022-05-24T00:35:31.044Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-28T23:59:59.000Z","id":"G2276688789-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180528-000002-e20180528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.667 + 0 37.563 180","-37.667 -180 37.563 -0.003"],"time_start":"2018-05-29T00:00:01.000Z","updated":"2022-05-23T23:53:29.383Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-29T23:59:59.000Z","id":"G2276680314-POCLOUD","original_format":"UMM_JSON","granule_size":"11.311956405639648","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180529-000001-e20180529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.712 + 0.003 37.767 180","-37.712 -180 37.767 -0.003"],"time_start":"2018-05-30T00:00:01.000Z","updated":"2022-05-24T00:15:24.795Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-30T23:59:59.000Z","id":"G2276684944-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180530-000001-e20180530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.778 + 0.002 37.821 180","-37.778 -180 37.821 -0.001"],"time_start":"2018-05-31T00:00:01.000Z","updated":"2022-05-24T00:11:26.027Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-05-31T23:59:59.000Z","id":"G2276683814-POCLOUD","original_format":"UMM_JSON","granule_size":"11.36072826385498","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180531-000001-e20180531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.768 + 0.001 37.723 180","-37.768 -180 37.723 0"],"time_start":"2018-06-01T00:00:02.000Z","updated":"2022-05-24T00:47:35.839Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-01T23:59:59.000Z","id":"G2276691751-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180601-000002-e20180601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.83 + 0.002 37.833 180","-37.83 -180 37.833 -0.006"],"time_start":"2018-06-02T00:00:02.000Z","updated":"2022-05-23T23:51:23.629Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-02T23:59:59.000Z","id":"G2276679846-POCLOUD","original_format":"UMM_JSON","granule_size":"13.865577697753906","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180602-000002-e20180602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.781 + 0.008 37.792 180","-37.781 -180 37.792 -0.002"],"time_start":"2018-06-03T00:00:00.000Z","updated":"2022-05-24T00:12:36.162Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-03T23:59:59.000Z","id":"G2276684014-POCLOUD","original_format":"UMM_JSON","granule_size":"13.648155212402344","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180603-000000-e20180603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.725 + 0.003 37.799 180","-37.725 -180 37.799 -0.003"],"time_start":"2018-06-04T00:00:01.000Z","updated":"2022-05-24T00:30:00.156Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-04T23:59:58.000Z","id":"G2276687889-POCLOUD","original_format":"UMM_JSON","granule_size":"13.75186538696289","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180604-000001-e20180604-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.715 + 0.002 37.831 180","-37.715 -180 37.831 -0.007"],"time_start":"2018-06-05T00:00:02.000Z","updated":"2022-05-24T00:09:31.852Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-05T23:59:59.000Z","id":"G2276683684-POCLOUD","original_format":"UMM_JSON","granule_size":"13.819101333618164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180605-000002-e20180605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.755 + 0 37.787 180","-37.755 -180 37.787 -0.002"],"time_start":"2018-06-06T00:00:02.000Z","updated":"2022-05-23T23:58:29.928Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-06T23:59:59.000Z","id":"G2276681282-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180606-000002-e20180606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.775 + 0 37.794 180","-37.775 -180 37.794 -0.004"],"time_start":"2018-06-07T00:00:02.000Z","updated":"2022-05-24T00:07:31.166Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-07T23:59:59.000Z","id":"G2276683411-POCLOUD","original_format":"UMM_JSON","granule_size":"13.764419555664062","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180607-000002-e20180607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.727 + 0.002 37.767 180","-37.727 -180 37.767 -0.002"],"time_start":"2018-06-08T00:00:02.000Z","updated":"2022-05-24T00:30:37.572Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-08T23:59:59.000Z","id":"G2276687950-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180608-000002-e20180608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.617 + 0 37.642 180","-37.617 -180 37.642 -0.002"],"time_start":"2018-06-09T00:00:02.000Z","updated":"2022-05-24T00:25:35.809Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-09T23:59:58.000Z","id":"G2276687000-POCLOUD","original_format":"UMM_JSON","granule_size":"13.886421203613281","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180609-000002-e20180609-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0.001 37.619 180","-37.565 -180 37.619 -0.001"],"time_start":"2018-06-10T00:00:02.000Z","updated":"2022-05-23T23:49:32.062Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-10T23:59:59.000Z","id":"G2276679619-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180610-000002-e20180610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0 37.651 180","-37.623 -180 37.651 -0.002"],"time_start":"2018-06-11T00:00:01.000Z","updated":"2022-05-24T00:10:35.086Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-11T23:59:59.000Z","id":"G2276683764-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180611-000001-e20180611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.691 + 0.002 37.705 180","-37.691 -180 37.705 -0.004"],"time_start":"2018-06-12T00:00:01.000Z","updated":"2022-05-24T00:43:39.982Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-12T23:59:59.000Z","id":"G2276690113-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180612-000001-e20180612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.737 + 0 37.765 180","-37.737 -180 37.765 -0.001"],"time_start":"2018-06-13T00:00:01.000Z","updated":"2022-05-24T00:14:28.889Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-13T23:59:59.000Z","id":"G2276684710-POCLOUD","original_format":"UMM_JSON","granule_size":"14.559152603149414","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180613-000001-e20180613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.766 + 0.003 37.792 180","-37.766 -180 37.792 -0.001"],"time_start":"2018-06-14T00:00:01.000Z","updated":"2022-05-24T00:24:32.969Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-14T23:59:58.000Z","id":"G2276686853-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180614-000001-e20180614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.825 + 0.001 37.834 180","-37.825 -180 37.834 -0.001"],"time_start":"2018-06-15T00:00:02.000Z","updated":"2022-05-23T23:56:27.096Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-15T23:59:58.000Z","id":"G2276680496-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180615-000002-e20180615-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.837 + 0 37.805 180","-37.837 -180 37.805 -0.001"],"time_start":"2018-06-16T00:00:02.000Z","updated":"2022-05-24T00:37:25.856Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-16T23:59:59.000Z","id":"G2276688913-POCLOUD","original_format":"UMM_JSON","granule_size":"14.417183876037598","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180616-000002-e20180616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.863 + 0.007 37.775 180","-37.863 -180 37.775 -0.001"],"time_start":"2018-06-17T00:00:01.000Z","updated":"2022-05-24T00:21:31.492Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-17T23:59:58.000Z","id":"G2276685916-POCLOUD","original_format":"UMM_JSON","granule_size":"14.112909317016602","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180617-000001-e20180617-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.74 + 0.003 37.708 180","-37.74 -180 37.708 -0.003"],"time_start":"2018-06-18T00:00:01.000Z","updated":"2022-05-24T00:03:51.093Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-18T23:59:59.000Z","id":"G2276682081-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180618-000001-e20180618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.665 + 0.003 37.646 180","-37.665 -180 37.646 -0.001"],"time_start":"2018-06-19T00:00:01.000Z","updated":"2022-05-24T00:33:29.535Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-19T23:59:58.000Z","id":"G2276688632-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180619-000001-e20180619-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.656 + 0.002 37.619 180","-37.656 -180 37.619 -0.002"],"time_start":"2018-06-20T00:00:01.000Z","updated":"2022-05-24T00:43:30.297Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-20T23:59:59.000Z","id":"G2276690093-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180620-000001-e20180620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.718 + 0.006 37.562 180","-37.718 -180 37.562 0"],"time_start":"2018-06-21T00:00:00.000Z","updated":"2022-05-24T00:01:36.856Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-21T23:59:58.000Z","id":"G2276681555-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180621-000000-e20180621-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.686 + 0.001 37.508 180","-37.686 -180 37.508 -0.002"],"time_start":"2018-06-22T00:00:02.000Z","updated":"2022-05-24T00:28:21.642Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-22T23:59:59.000Z","id":"G2276687656-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180622-000002-e20180622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.524 + 0.002 37.47 180","-37.524 -180 37.47 -0.002"],"time_start":"2018-06-23T00:00:02.000Z","updated":"2022-05-24T00:46:27.326Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-23T23:59:59.000Z","id":"G2276690853-POCLOUD","original_format":"UMM_JSON","granule_size":"12.23359489440918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180623-000002-e20180623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.856 + 0.002 37.475 180","-37.856 -180 37.475 -0.001"],"time_start":"2018-06-24T00:00:01.000Z","updated":"2022-05-24T00:09:28.854Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-24T23:59:58.000Z","id":"G2276683681-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180624-000001-e20180624-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.911 + 0.001 37.3 180","-39.911 -180 37.3 0"],"time_start":"2018-06-25T00:00:02.000Z","updated":"2022-05-24T00:09:27.088Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-25T23:59:59.000Z","id":"G2276683663-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180625-000002-e20180625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.093 + 0.002 37.3 180","-39.093 -180 37.3 0"],"time_start":"2018-06-26T00:00:00.000Z","updated":"2022-05-23T23:58:25.521Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-26T23:59:59.000Z","id":"G2276681272-POCLOUD","original_format":"UMM_JSON","granule_size":"12.096023559570312","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180626-000000-e20180626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.341 + 0.003 37.221 180","-40.341 -180 37.221 -0.001"],"time_start":"2018-06-27T00:00:00.000Z","updated":"2022-05-24T00:43:26.825Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-27T23:59:59.000Z","id":"G2276690086-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180627-000000-e20180627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.236 + 0 37.092 180","-38.236 -180 37.092 -0.002"],"time_start":"2018-06-28T00:00:02.000Z","updated":"2022-05-24T00:10:33.648Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-28T23:59:59.000Z","id":"G2276683761-POCLOUD","original_format":"UMM_JSON","granule_size":"12.291413307189941","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180628-000002-e20180628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.45 + 0.001 37.173 180","-38.45 -180 37.173 -0.001"],"time_start":"2018-06-29T00:00:02.000Z","updated":"2022-05-24T00:40:34.413Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-29T23:59:59.000Z","id":"G2276689619-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180629-000002-e20180629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.464 + 0.001 37.259 180","-37.464 -180 37.259 0"],"time_start":"2018-06-30T00:00:02.000Z","updated":"2022-05-23T23:52:28.758Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-06-30T23:59:59.000Z","id":"G2276680244-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180630-000002-e20180630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.493 + 0.001 37.358 180","-37.493 -180 37.358 -0.008"],"time_start":"2018-07-01T00:00:02.000Z","updated":"2022-05-24T00:18:27.178Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-01T23:59:59.000Z","id":"G2276685612-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180701-000002-e20180701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.519 + 0.001 37.388 180","-37.519 -180 37.388 -0.001"],"time_start":"2018-07-02T00:00:01.000Z","updated":"2022-05-24T00:32:40.794Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-02T23:59:59.000Z","id":"G2276688451-POCLOUD","original_format":"UMM_JSON","granule_size":"9.272080421447754","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180702-000001-e20180702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.495 + 0.004 37.388 180","-37.495 -180 37.388 -0.001"],"time_start":"2018-07-03T00:00:02.000Z","updated":"2022-05-24T00:13:31.708Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-03T23:59:59.000Z","id":"G2276684595-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180703-000002-e20180703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.755 + 0 37.393 180","-37.755 -180 37.393 -0.001"],"time_start":"2018-07-04T00:00:02.000Z","updated":"2022-05-24T00:34:22.859Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-04T23:59:59.000Z","id":"G2276688705-POCLOUD","original_format":"UMM_JSON","granule_size":"12.037174224853516","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180704-000002-e20180704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.364 + 0.003 37.359 180","-38.364 -180 37.359 -0.001"],"time_start":"2018-07-05T00:00:02.000Z","updated":"2022-05-23T23:51:29.326Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-05T23:59:59.000Z","id":"G2276679860-POCLOUD","original_format":"UMM_JSON","granule_size":"12.099037170410156","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180705-000002-e20180705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.504 + 0.003 37.296 180","-39.504 -180 37.296 -0.004"],"time_start":"2018-07-06T00:00:01.000Z","updated":"2022-05-24T00:27:28.088Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-06T23:59:59.000Z","id":"G2276687203-POCLOUD","original_format":"UMM_JSON","granule_size":"12.40852165222168","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180706-000001-e20180706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.297 + 0.007 37.217 180","-39.297 -180 37.217 -0.002"],"time_start":"2018-07-07T00:00:02.000Z","updated":"2022-05-24T00:05:25.433Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-07T23:59:58.000Z","id":"G2276682605-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180707-000002-e20180707-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.145 + 0.005 37.215 180","-40.145 -180 37.215 -0.001"],"time_start":"2018-07-08T00:00:01.000Z","updated":"2022-05-24T00:17:28.384Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-08T23:59:59.000Z","id":"G2276685256-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180708-000001-e20180708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.184 + 0 37.661 180","-38.184 -180 37.661 -0.001"],"time_start":"2018-07-09T00:00:01.000Z","updated":"2022-05-24T00:35:28.770Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-09T23:59:58.000Z","id":"G2276688782-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180709-000001-e20180709-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.552 + 0.008 38.117 180","-37.552 -180 38.117 -0.003"],"time_start":"2018-07-10T00:00:02.000Z","updated":"2022-05-24T00:46:27.155Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-10T23:59:59.000Z","id":"G2276690843-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180710-000002-e20180710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.596 + 0 37.682 180","-37.596 -180 37.682 -0.001"],"time_start":"2018-07-11T00:00:02.000Z","updated":"2022-05-24T00:48:30.039Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-11T23:59:59.000Z","id":"G2276692143-POCLOUD","original_format":"UMM_JSON","granule_size":"16.223522186279297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180711-000002-e20180711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.602 + 0 37.62 180","-37.602 -180 37.62 -0.006"],"time_start":"2018-07-12T00:00:02.000Z","updated":"2022-05-24T00:45:46.005Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-12T23:59:59.000Z","id":"G2276690372-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180712-000002-e20180712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.606 + 0 37.624 180","-37.606 -180 37.624 -0.002"],"time_start":"2018-07-13T00:00:02.000Z","updated":"2022-05-24T00:08:28.757Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-13T23:59:59.000Z","id":"G2276683585-POCLOUD","original_format":"UMM_JSON","granule_size":"14.245587348937988","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180713-000002-e20180713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.586 + 0.001 37.637 180","-37.586 -180 37.637 -0.002"],"time_start":"2018-07-14T00:00:02.000Z","updated":"2022-05-23T23:52:25.589Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-14T23:59:59.000Z","id":"G2276679994-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180714-000002-e20180714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.576 + 0.005 37.661 180","-37.576 -180 37.661 -0.002"],"time_start":"2018-07-15T00:00:02.000Z","updated":"2022-05-24T00:19:30.076Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-15T23:59:59.000Z","id":"G2276685720-POCLOUD","original_format":"UMM_JSON","granule_size":"13.815532684326172","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180715-000002-e20180715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.524 + 0.001 37.74 180","-37.524 -180 37.74 0"],"time_start":"2018-07-16T00:00:00.000Z","updated":"2022-05-23T23:52:29.553Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-16T23:59:59.000Z","id":"G2276680247-POCLOUD","original_format":"UMM_JSON","granule_size":"13.751887321472168","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180716-000000-e20180716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.625 + 0.002 37.849 180","-37.625 -180 37.849 -0.003"],"time_start":"2018-07-17T00:00:00.000Z","updated":"2022-05-24T00:34:32.532Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-17T23:59:59.000Z","id":"G2276688714-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180717-000000-e20180717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.74 + 0 37.767 180","-37.74 -180 37.767 0"],"time_start":"2018-07-18T00:00:02.000Z","updated":"2022-05-24T00:36:33.595Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-18T23:59:59.000Z","id":"G2276688875-POCLOUD","original_format":"UMM_JSON","granule_size":"13.306845664978027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180718-000002-e20180718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0.002 37.716 180","-37.75 -180 37.716 -0.002"],"time_start":"2018-07-19T00:00:02.000Z","updated":"2022-05-24T00:44:25.214Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-19T23:59:58.000Z","id":"G2276690174-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180719-000002-e20180719-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.788 + 0 37.814 180","-37.788 -180 37.814 -0.004"],"time_start":"2018-07-20T00:00:02.000Z","updated":"2022-05-24T00:29:30.638Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-20T23:59:59.000Z","id":"G2276687816-POCLOUD","original_format":"UMM_JSON","granule_size":"12.370099067687988","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180720-000002-e20180720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.775 + 0.003 37.767 180","-37.775 -180 37.767 -0.003"],"time_start":"2018-07-21T00:00:02.000Z","updated":"2022-05-24T00:46:37.046Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-21T23:59:59.000Z","id":"G2276690970-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180721-000002-e20180721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.718 + 0.007 37.779 180","-37.718 -180 37.779 -0.002"],"time_start":"2018-07-22T00:00:02.000Z","updated":"2022-05-23T23:52:26.314Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-22T23:59:58.000Z","id":"G2276680049-POCLOUD","original_format":"UMM_JSON","granule_size":"13.798941612243652","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180722-000002-e20180722-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.651 + 0.005 37.681 180","-37.651 -180 37.681 -0.004"],"time_start":"2018-07-23T00:00:01.000Z","updated":"2022-05-23T23:50:25.859Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-23T23:59:59.000Z","id":"G2276679760-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180723-000001-e20180723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.621 + 0.003 37.706 180","-37.621 -180 37.706 -0.001"],"time_start":"2018-07-24T00:00:02.000Z","updated":"2022-05-24T00:04:37.580Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-24T23:59:59.000Z","id":"G2276682461-POCLOUD","original_format":"UMM_JSON","granule_size":"13.812918663024902","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180724-000002-e20180724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.913 + 0 37.646 180","-37.913 -180 37.646 -0.001"],"time_start":"2018-07-25T00:00:00.000Z","updated":"2022-05-23T23:49:25.390Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-25T23:59:59.000Z","id":"G2276679565-POCLOUD","original_format":"UMM_JSON","granule_size":"13.46476936340332","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180725-000000-e20180725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.738 + 0.003 37.626 180","-37.738 -180 37.626 -0.001"],"time_start":"2018-07-26T00:00:01.000Z","updated":"2022-05-24T00:48:35.221Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-26T23:59:57.000Z","id":"G2276692118-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180726-000001-e20180726-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.746 + 0.005 37.74 180","-37.746 -180 37.74 -0.003"],"time_start":"2018-07-27T00:00:01.000Z","updated":"2022-05-24T00:15:23.929Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-27T23:59:59.000Z","id":"G2276684941-POCLOUD","original_format":"UMM_JSON","granule_size":"11.821412086486816","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180727-000001-e20180727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.799 + 0.004 37.819 180","-37.799 -180 37.819 -0.001"],"time_start":"2018-07-28T00:00:01.000Z","updated":"2022-05-24T00:26:35.388Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-28T23:59:59.000Z","id":"G2276687117-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180728-000001-e20180728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.83 + 0 37.709 180","-37.83 -180 37.709 0"],"time_start":"2018-07-29T00:00:00.000Z","updated":"2022-05-24T00:33:33.376Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-29T23:59:59.000Z","id":"G2276688640-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180729-000000-e20180729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.87 + 0 37.758 180","-37.87 -180 37.758 -0.002"],"time_start":"2018-07-30T00:00:02.000Z","updated":"2022-05-24T00:02:32.232Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-30T23:59:59.000Z","id":"G2276681617-POCLOUD","original_format":"UMM_JSON","granule_size":"13.99264144897461","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180730-000002-e20180730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.773 + 0 37.605 180","-37.773 -180 37.605 -0.003"],"time_start":"2018-07-31T00:00:02.000Z","updated":"2022-05-24T00:24:25.810Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-07-31T23:59:58.000Z","id":"G2276686837-POCLOUD","original_format":"UMM_JSON","granule_size":"14.701301574707031","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180731-000002-e20180731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.74 + 0.001 37.668 180","-37.74 -180 37.668 -0.003"],"time_start":"2018-08-01T00:00:00.000Z","updated":"2022-05-24T00:02:28.189Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-01T23:59:58.000Z","id":"G2276681605-POCLOUD","original_format":"UMM_JSON","granule_size":"13.582015037536621","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180801-000000-e20180801-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.819 + 0.001 37.681 180","-37.819 -180 37.681 -0.001"],"time_start":"2018-08-02T00:00:02.000Z","updated":"2022-05-24T00:24:33.051Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-02T23:59:57.000Z","id":"G2276686854-POCLOUD","original_format":"UMM_JSON","granule_size":"13.852264404296875","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180802-000002-e20180802-235957.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.856 + 0 37.746 180","-37.856 -180 37.746 -0.001"],"time_start":"2018-08-03T00:00:01.000Z","updated":"2022-05-24T00:49:31.044Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-03T23:59:59.000Z","id":"G2276692720-POCLOUD","original_format":"UMM_JSON","granule_size":"13.656614303588867","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180803-000001-e20180803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.857 + 0 37.702 180","-37.857 -180 37.702 -0.001"],"time_start":"2018-08-04T00:00:02.000Z","updated":"2022-05-24T00:09:24.632Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-04T23:59:59.000Z","id":"G2276683661-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180804-000002-e20180804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.759 + 0.001 37.677 180","-37.759 -180 37.677 0"],"time_start":"2018-08-05T00:00:02.000Z","updated":"2022-05-23T23:47:30.186Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-05T23:59:59.000Z","id":"G2276677563-POCLOUD","original_format":"UMM_JSON","granule_size":"13.725600242614746","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180805-000002-e20180805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0.007 37.567 180","-37.73 -180 37.567 -0.001"],"time_start":"2018-08-06T00:00:02.000Z","updated":"2022-05-24T00:26:38.431Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-06T23:59:58.000Z","id":"G2276687129-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180806-000002-e20180806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0.002 37.412 180","-37.658 -180 37.412 -0.001"],"time_start":"2018-08-07T00:00:02.000Z","updated":"2022-05-24T00:31:30.394Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-07T23:59:59.000Z","id":"G2276688016-POCLOUD","original_format":"UMM_JSON","granule_size":"13.811169624328613","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180807-000002-e20180807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.702 + 0 37.529 180","-37.702 -180 37.529 -0.003"],"time_start":"2018-08-08T00:00:01.000Z","updated":"2022-05-24T00:41:32.405Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-08T23:59:59.000Z","id":"G2276689674-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180808-000001-e20180808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.738 + 0.005 37.614 180","-37.738 -180 37.614 -0.003"],"time_start":"2018-08-09T00:00:02.000Z","updated":"2022-05-24T00:27:29.366Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-09T23:59:59.000Z","id":"G2276687230-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180809-000002-e20180809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.78 + 0.002 37.695 180","-37.78 -180 37.695 -0.001"],"time_start":"2018-08-10T00:00:02.000Z","updated":"2022-05-24T00:43:23.897Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-10T23:59:59.000Z","id":"G2276690080-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180810-000002-e20180810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.78 + 0.005 37.724 180","-37.78 -180 37.724 -0.001"],"time_start":"2018-08-11T00:00:02.000Z","updated":"2022-05-24T00:21:32.809Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-11T23:59:58.000Z","id":"G2276685956-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180811-000002-e20180811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.857 + 0.001 37.752 180","-37.857 -180 37.752 -0.004"],"time_start":"2018-08-12T00:00:02.000Z","updated":"2022-05-24T00:33:34.955Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-12T23:59:59.000Z","id":"G2276688641-POCLOUD","original_format":"UMM_JSON","granule_size":"16.372254371643066","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180812-000002-e20180812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.911 + 0 37.798 180","-37.911 -180 37.798 -0.001"],"time_start":"2018-08-13T00:00:02.000Z","updated":"2022-05-24T00:21:32.632Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-13T23:59:59.000Z","id":"G2276685917-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180813-000002-e20180813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.35 + 0 37.755 180","-39.35 -180 37.755 -0.006"],"time_start":"2018-08-14T00:00:02.000Z","updated":"2022-05-24T00:49:37.146Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-14T23:59:58.000Z","id":"G2276692751-POCLOUD","original_format":"UMM_JSON","granule_size":"15.365588188171387","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180814-000002-e20180814-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.764 + 0 37.713 180","-38.764 -180 37.713 -0.002"],"time_start":"2018-08-15T00:00:02.000Z","updated":"2022-05-24T00:20:32.108Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-15T23:59:59.000Z","id":"G2276685814-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180815-000002-e20180815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.497 + 0 37.301 180","-39.497 -180 37.301 -0.002"],"time_start":"2018-08-16T00:00:02.000Z","updated":"2022-05-24T00:24:24.408Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-16T23:59:59.000Z","id":"G2276686835-POCLOUD","original_format":"UMM_JSON","granule_size":"10.979813575744629","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180816-000002-e20180816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.286 + 0.001 37.4 180","-39.286 -180 37.4 -0.004"],"time_start":"2018-08-17T00:00:02.000Z","updated":"2022-05-23T23:51:24.221Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-17T23:59:59.000Z","id":"G2276679848-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180817-000002-e20180817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.954 + 0.002 37.317 180","-38.954 -180 37.317 -0.001"],"time_start":"2018-08-18T00:00:02.000Z","updated":"2022-05-24T00:42:32.748Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-18T23:59:59.000Z","id":"G2276689986-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180818-000002-e20180818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.643 + 0.001 37.377 180","-37.643 -180 37.377 -0.003"],"time_start":"2018-08-19T00:00:01.000Z","updated":"2022-05-23T23:49:26.830Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-19T23:59:59.000Z","id":"G2276679551-POCLOUD","original_format":"UMM_JSON","granule_size":"12.10364818572998","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180819-000001-e20180819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.85 + 0.001 37.421 180","-37.85 -180 37.421 0"],"time_start":"2018-08-20T00:00:01.000Z","updated":"2022-05-23T23:59:25.120Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-20T23:59:59.000Z","id":"G2276681317-POCLOUD","original_format":"UMM_JSON","granule_size":"11.887030601501465","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180820-000001-e20180820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.187 + 0.001 37.453 180","-38.187 -180 37.453 -0.001"],"time_start":"2018-08-21T00:00:02.000Z","updated":"2022-05-23T23:47:24.290Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-21T23:59:59.000Z","id":"G2276677496-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180821-000002-e20180821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.855 + 0.001 37.356 180","-38.855 -180 37.356 0"],"time_start":"2018-08-22T00:00:02.000Z","updated":"2022-05-23T23:49:27.357Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-22T23:59:59.000Z","id":"G2276679545-POCLOUD","original_format":"UMM_JSON","granule_size":"12.045487403869629","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180822-000002-e20180822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.112 + 0.002 37.38 180","-40.112 -180 37.38 -0.001"],"time_start":"2018-08-23T00:00:00.000Z","updated":"2022-05-24T00:11:23.324Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-23T23:59:59.000Z","id":"G2276683811-POCLOUD","original_format":"UMM_JSON","granule_size":"12.518994331359863","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180823-000000-e20180823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-40.293 + 0.001 37.278 180","-40.293 -180 37.278 -0.001"],"time_start":"2018-08-24T00:00:02.000Z","updated":"2022-05-24T00:14:33.513Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-24T23:59:59.000Z","id":"G2276684726-POCLOUD","original_format":"UMM_JSON","granule_size":"12.870530128479004","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180824-000002-e20180824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.055 + 0.003 37.48 180","-39.055 -180 37.48 -0.001"],"time_start":"2018-08-25T00:00:00.000Z","updated":"2022-05-24T00:32:40.118Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-25T23:59:59.000Z","id":"G2276688401-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180825-000000-e20180825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.192 + 0.001 37.374 180","-39.192 -180 37.374 -0.001"],"time_start":"2018-08-26T00:00:00.000Z","updated":"2022-05-24T00:13:34.486Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-26T23:59:59.000Z","id":"G2276684601-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180826-000000-e20180826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.466 + 0.001 37.514 180","-37.466 -180 37.514 -0.001"],"time_start":"2018-08-27T00:00:02.000Z","updated":"2022-05-23T23:52:24.129Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-27T23:59:59.000Z","id":"G2276679991-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180827-000002-e20180827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.584 + 0 37.621 180","-37.584 -180 37.621 -0.002"],"time_start":"2018-08-28T00:00:00.000Z","updated":"2022-05-24T00:18:30.996Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-28T23:59:59.000Z","id":"G2276685620-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180828-000000-e20180828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.579 + 0.003 37.579 180","-37.579 -180 37.579 0"],"time_start":"2018-08-29T00:00:02.000Z","updated":"2022-05-23T23:56:34.326Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-29T23:59:59.000Z","id":"G2276680526-POCLOUD","original_format":"UMM_JSON","granule_size":"14.01034164428711","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180829-000002-e20180829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.574 + 0.001 37.628 180","-37.574 -180 37.628 -0.001"],"time_start":"2018-08-30T00:00:00.000Z","updated":"2022-05-23T23:55:31.558Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-30T23:59:59.000Z","id":"G2276680428-POCLOUD","original_format":"UMM_JSON","granule_size":"14.069657325744629","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180830-000000-e20180830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.612 + 0.003 37.707 180","-37.612 -180 37.707 -0.001"],"time_start":"2018-08-31T00:00:02.000Z","updated":"2022-05-24T00:17:25.584Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-08-31T23:59:59.000Z","id":"G2276685251-POCLOUD","original_format":"UMM_JSON","granule_size":"13.979351997375488","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180831-000002-e20180831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.536 + 0.001 37.659 180","-37.536 -180 37.659 -0.005"],"time_start":"2018-09-01T00:00:02.000Z","updated":"2022-05-24T00:03:27.372Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-01T23:59:59.000Z","id":"G2276682024-POCLOUD","original_format":"UMM_JSON","granule_size":"14.109854698181152","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180901-000002-e20180901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.628 + 0.003 37.587 180","-37.628 -180 37.587 0"],"time_start":"2018-09-02T00:00:00.000Z","updated":"2022-05-23T23:51:26.656Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-02T23:59:59.000Z","id":"G2276679853-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180902-000000-e20180902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.508 + 0.001 37.53 180","-37.508 -180 37.53 0"],"time_start":"2018-09-03T00:00:02.000Z","updated":"2022-05-23T23:58:41.319Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-03T23:59:59.000Z","id":"G2276681306-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180903-000002-e20180903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.525 + 0 37.509 180","-37.525 -180 37.509 -0.007"],"time_start":"2018-09-04T00:00:02.000Z","updated":"2022-05-24T00:46:28.027Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-04T23:59:59.000Z","id":"G2276690862-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180904-000002-e20180904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.575 + 0 37.778 180","-37.575 -180 37.778 -0.004"],"time_start":"2018-09-05T00:00:02.000Z","updated":"2022-05-24T00:48:30.077Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-05T23:59:59.000Z","id":"G2276692148-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180905-000002-e20180905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.576 + 0.006 37.65 180","-37.576 -180 37.65 -0.002"],"time_start":"2018-09-06T00:00:01.000Z","updated":"2022-05-24T00:41:26.112Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-06T23:59:59.000Z","id":"G2276689662-POCLOUD","original_format":"UMM_JSON","granule_size":"13.40062141418457","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180906-000001-e20180906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.731 + 0.001 37.731 180","-37.731 -180 37.731 0"],"time_start":"2018-09-07T00:00:01.000Z","updated":"2022-05-24T00:45:28.786Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-07T23:59:58.000Z","id":"G2276690246-POCLOUD","original_format":"UMM_JSON","granule_size":"14.008801460266113","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180907-000001-e20180907-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.705 + 0 37.617 180","-37.705 -180 37.617 -0.001"],"time_start":"2018-09-08T00:00:00.000Z","updated":"2022-05-24T00:35:34.853Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-08T23:59:59.000Z","id":"G2276688798-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180908-000000-e20180908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.609 + 0.003 37.532 180","-37.609 -180 37.532 -0.001"],"time_start":"2018-09-09T00:00:02.000Z","updated":"2022-05-23T23:52:29.077Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-09T23:59:59.000Z","id":"G2276680245-POCLOUD","original_format":"UMM_JSON","granule_size":"14.381101608276367","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180909-000002-e20180909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0 37.589 180","-37.638 -180 37.589 0"],"time_start":"2018-09-10T00:00:02.000Z","updated":"2022-05-24T00:07:27.730Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-10T23:59:59.000Z","id":"G2276683064-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180910-000002-e20180910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0 37.701 180","-37.632 -180 37.701 -0.001"],"time_start":"2018-09-11T00:00:01.000Z","updated":"2022-05-23T23:48:31.409Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-11T23:59:59.000Z","id":"G2276678987-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180911-000001-e20180911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.203 + 0.005 37.583 180","-38.203 -180 37.583 -0.003"],"time_start":"2018-09-12T00:00:00.000Z","updated":"2022-05-24T00:31:35.075Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-12T23:59:59.000Z","id":"G2276688030-POCLOUD","original_format":"UMM_JSON","granule_size":"18.43981647491455","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180912-000000-e20180912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.727 + 0.001 37.53 180","-37.727 -180 37.53 -0.001"],"time_start":"2018-09-13T00:00:00.000Z","updated":"2022-05-24T00:34:33.294Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-13T23:59:59.000Z","id":"G2276688718-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180913-000000-e20180913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0.001 37.65 180","-37.791 -180 37.65 -0.002"],"time_start":"2018-09-14T00:00:00.000Z","updated":"2022-05-24T00:03:31.458Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-14T23:59:59.000Z","id":"G2276682040-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180914-000000-e20180914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.844 + 0.001 37.631 180","-37.844 -180 37.631 -0.006"],"time_start":"2018-09-15T00:00:02.000Z","updated":"2022-05-24T00:30:37.149Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-15T23:59:59.000Z","id":"G2276687947-POCLOUD","original_format":"UMM_JSON","granule_size":"17.529549598693848","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180915-000002-e20180915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.886 + 0.003 37.701 180","-37.886 -180 37.701 0"],"time_start":"2018-09-16T00:00:01.000Z","updated":"2022-05-23T23:47:59.724Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-16T23:59:59.000Z","id":"G2276678435-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180916-000001-e20180916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.872 + 0.004 37.733 180","-37.872 -180 37.733 0"],"time_start":"2018-09-17T00:00:02.000Z","updated":"2022-05-24T00:02:26.685Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-17T23:59:59.000Z","id":"G2276681604-POCLOUD","original_format":"UMM_JSON","granule_size":"18.072529792785645","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180917-000002-e20180917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.816 + 0.002 37.702 180","-37.816 -180 37.702 -0.003"],"time_start":"2018-09-18T00:00:01.000Z","updated":"2022-05-24T00:26:27.089Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-18T23:59:59.000Z","id":"G2276687089-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180918-000001-e20180918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.774 + 0 37.715 180","-37.774 -180 37.715 -0.003"],"time_start":"2018-09-19T00:00:02.000Z","updated":"2022-05-24T00:08:33.966Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-19T23:59:59.000Z","id":"G2276683596-POCLOUD","original_format":"UMM_JSON","granule_size":"18.596107482910156","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180919-000002-e20180919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.705 + 0 37.622 180","-37.705 -180 37.622 -0.001"],"time_start":"2018-09-20T00:00:02.000Z","updated":"2022-05-24T00:45:35.658Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-20T23:59:59.000Z","id":"G2276690279-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180920-000002-e20180920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.707 + 0 37.667 180","-37.707 -180 37.667 -0.001"],"time_start":"2018-09-21T00:00:01.000Z","updated":"2022-05-24T00:43:39.140Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-21T23:59:59.000Z","id":"G2276690109-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180921-000001-e20180921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.665 + 0.002 37.677 180","-37.665 -180 37.677 -0.002"],"time_start":"2018-09-22T00:00:02.000Z","updated":"2022-05-24T00:03:26.237Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-22T23:59:59.000Z","id":"G2276682020-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180922-000002-e20180922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.744 + 0 37.631 180","-37.744 -180 37.631 -0.001"],"time_start":"2018-09-23T00:00:00.000Z","updated":"2022-05-24T00:36:39.543Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-23T23:59:59.000Z","id":"G2276688891-POCLOUD","original_format":"UMM_JSON","granule_size":"18.28109359741211","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180923-000000-e20180923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.771 + 0 37.763 180","-37.771 -180 37.763 -0.001"],"time_start":"2018-09-24T00:00:02.000Z","updated":"2022-05-24T00:13:33.971Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-24T23:59:59.000Z","id":"G2276684616-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180924-000002-e20180924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.811 + 0.006 37.657 180","-37.811 -180 37.657 -0.001"],"time_start":"2018-09-25T00:00:01.000Z","updated":"2022-05-24T00:28:32.532Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-25T23:59:59.000Z","id":"G2276687706-POCLOUD","original_format":"UMM_JSON","granule_size":"17.593342781066895","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180925-000001-e20180925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.844 + 0 37.578 180","-37.844 -180 37.578 -0.001"],"time_start":"2018-09-26T00:00:02.000Z","updated":"2022-05-24T00:46:25.135Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-26T23:59:59.000Z","id":"G2276690818-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180926-000002-e20180926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.81 + 0.003 37.773 180","-37.81 -180 37.773 -0.003"],"time_start":"2018-09-27T00:00:02.000Z","updated":"2022-05-23T23:57:31.151Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-27T23:59:59.000Z","id":"G2276680575-POCLOUD","original_format":"UMM_JSON","granule_size":"16.810447692871094","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180927-000002-e20180927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.78 + 0.001 37.754 180","-37.78 -180 37.754 -0.003"],"time_start":"2018-09-28T00:00:00.000Z","updated":"2022-05-24T00:12:36.146Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-28T23:59:59.000Z","id":"G2276683987-POCLOUD","original_format":"UMM_JSON","granule_size":"18.133773803710938","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180928-000000-e20180928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.754 + 0.002 37.72 180","-37.754 -180 37.72 -0.006"],"time_start":"2018-09-29T00:00:02.000Z","updated":"2022-05-24T00:15:27.799Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-29T23:59:58.000Z","id":"G2276684962-POCLOUD","original_format":"UMM_JSON","granule_size":"15.209296226501465","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180929-000002-e20180929-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.806 + 0.004 37.738 180","-37.806 -180 37.738 0"],"time_start":"2018-09-30T00:00:02.000Z","updated":"2022-05-23T23:50:27.455Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-09-30T23:59:59.000Z","id":"G2276679761-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20180930-000002-e20180930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.799 + 0 37.835 180","-37.799 -180 37.835 -0.001"],"time_start":"2018-10-01T00:00:02.000Z","updated":"2022-05-24T00:20:30.371Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-01T23:59:59.000Z","id":"G2276685811-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181001-000002-e20181001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0.001 37.747 180","-37.747 -180 37.747 -0.001"],"time_start":"2018-10-02T00:00:02.000Z","updated":"2022-05-24T00:41:35.008Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-02T23:59:59.000Z","id":"G2276689681-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181002-000002-e20181002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.652 + 0 37.763 180","-37.652 -180 37.763 0"],"time_start":"2018-10-03T00:00:02.000Z","updated":"2022-05-24T00:27:31.074Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-03T23:59:59.000Z","id":"G2276687210-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181003-000002-e20181003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0 37.696 180","-37.616 -180 37.696 0"],"time_start":"2018-10-04T00:00:01.000Z","updated":"2022-05-24T00:23:27.554Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-04T23:59:58.000Z","id":"G2276686669-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181004-000001-e20181004-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.547 + 0.004 37.636 180","-37.547 -180 37.636 -0.001"],"time_start":"2018-10-05T00:00:02.000Z","updated":"2022-05-24T00:27:30.200Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-05T23:59:58.000Z","id":"G2276687227-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181005-000002-e20181005-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.538 + 0 37.649 180","-37.538 -180 37.649 -0.001"],"time_start":"2018-10-06T00:00:00.000Z","updated":"2022-05-24T00:47:28.328Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-06T23:59:59.000Z","id":"G2276691679-POCLOUD","original_format":"UMM_JSON","granule_size":"18.432817459106445","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181006-000000-e20181006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.681 + 0.004 37.674 180","-37.681 -180 37.674 0"],"time_start":"2018-10-07T00:00:02.000Z","updated":"2022-05-24T00:49:41.692Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-07T23:59:59.000Z","id":"G2276692797-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181007-000002-e20181007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.725 + 0.001 37.77 180","-37.725 -180 37.77 0"],"time_start":"2018-10-08T00:00:02.000Z","updated":"2022-05-24T00:03:39.744Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-08T23:59:59.000Z","id":"G2276682061-POCLOUD","original_format":"UMM_JSON","granule_size":"18.824816703796387","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181008-000002-e20181008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.002 37.802 180","-37.769 -180 37.802 0"],"time_start":"2018-10-09T00:00:01.000Z","updated":"2022-05-24T00:23:35.017Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-09T23:59:59.000Z","id":"G2276686688-POCLOUD","original_format":"UMM_JSON","granule_size":"18.96120262145996","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181009-000001-e20181009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.757 + 0 37.855 180","-37.757 -180 37.855 0"],"time_start":"2018-10-10T00:00:02.000Z","updated":"2022-05-24T00:43:32.776Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-10T23:59:59.000Z","id":"G2276690097-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181010-000002-e20181010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.794 + 0.002 37.825 180","-37.794 -180 37.825 -0.001"],"time_start":"2018-10-11T00:00:02.000Z","updated":"2022-05-24T00:07:33.836Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-11T23:59:59.000Z","id":"G2276683525-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181011-000002-e20181011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.763 + 0.001 37.856 180","-37.763 -180 37.856 0"],"time_start":"2018-10-12T00:00:01.000Z","updated":"2022-05-24T00:42:38.929Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-12T23:59:59.000Z","id":"G2276690022-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181012-000001-e20181012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.652 + 0.001 37.771 180","-37.652 -180 37.771 -0.004"],"time_start":"2018-10-13T00:00:02.000Z","updated":"2022-05-24T00:23:43.951Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-13T23:59:59.000Z","id":"G2276686752-POCLOUD","original_format":"UMM_JSON","granule_size":"18.31237506866455","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181013-000002-e20181013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0.001 37.64 180","-37.636 -180 37.64 0"],"time_start":"2018-10-14T00:00:00.000Z","updated":"2022-05-24T00:47:28.740Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-14T23:59:59.000Z","id":"G2276691651-POCLOUD","original_format":"UMM_JSON","granule_size":"18.44498920440674","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181014-000000-e20181014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.506 + 0.003 37.63 180","-37.506 -180 37.63 0"],"time_start":"2018-10-15T00:00:01.000Z","updated":"2022-05-24T00:01:34.548Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-15T23:59:59.000Z","id":"G2276681548-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181015-000001-e20181015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.548 + 0.001 37.616 180","-37.548 -180 37.616 -0.001"],"time_start":"2018-10-16T00:00:02.000Z","updated":"2022-05-24T00:05:36.257Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-16T23:59:58.000Z","id":"G2276682644-POCLOUD","original_format":"UMM_JSON","granule_size":"17.65130043029785","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181016-000002-e20181016-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.577 + 0.002 37.539 180","-37.577 -180 37.539 -0.005"],"time_start":"2018-10-17T00:00:00.000Z","updated":"2022-05-24T00:34:45.698Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-17T23:59:59.000Z","id":"G2276688748-POCLOUD","original_format":"UMM_JSON","granule_size":"18.72746181488037","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181017-000000-e20181017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.613 + 0.002 37.535 180","-37.613 -180 37.535 -0.003"],"time_start":"2018-10-18T00:00:02.000Z","updated":"2022-05-24T00:12:29.013Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-18T23:59:58.000Z","id":"G2276683932-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181018-000002-e20181018-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0.001 37.486 180","-37.638 -180 37.486 -0.001"],"time_start":"2018-10-19T00:00:01.000Z","updated":"2022-05-24T00:33:40.773Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-19T23:59:59.000Z","id":"G2276688659-POCLOUD","original_format":"UMM_JSON","granule_size":"18.539270401000977","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181019-000001-e20181019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0.001 37.55 180","-37.73 -180 37.55 -0.006"],"time_start":"2018-10-20T00:00:02.000Z","updated":"2022-05-24T00:10:38.579Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-20T23:59:59.000Z","id":"G2276683777-POCLOUD","original_format":"UMM_JSON","granule_size":"18.256144523620605","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181020-000002-e20181020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0 37.503 180","-37.603 -180 37.503 -0.001"],"time_start":"2018-10-21T00:00:01.000Z","updated":"2022-05-23T23:55:36.435Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-21T23:59:59.000Z","id":"G2276680444-POCLOUD","original_format":"UMM_JSON","granule_size":"18.450987815856934","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181021-000001-e20181021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.627 + 0 37.442 180","-37.627 -180 37.442 -0.001"],"time_start":"2018-10-22T00:00:02.000Z","updated":"2022-05-24T00:27:37.096Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-22T23:59:59.000Z","id":"G2276687344-POCLOUD","original_format":"UMM_JSON","granule_size":"18.127482414245605","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181022-000002-e20181022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.525 + 0.002 37.477 180","-37.525 -180 37.477 -0.004"],"time_start":"2018-10-23T00:00:02.000Z","updated":"2022-05-24T00:30:40.633Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-23T23:59:59.000Z","id":"G2276687968-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181023-000002-e20181023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.594 + 0 37.492 180","-37.594 -180 37.492 -0.005"],"time_start":"2018-10-24T00:00:01.000Z","updated":"2022-05-23T23:51:26.411Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-24T23:59:59.000Z","id":"G2276679852-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181024-000001-e20181024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.643 + 0.004 37.57 180","-37.643 -180 37.57 0"],"time_start":"2018-10-25T00:00:01.000Z","updated":"2022-05-24T00:47:30.378Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-25T23:59:59.000Z","id":"G2276691724-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181025-000001-e20181025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.666 + 0.001 37.565 180","-37.666 -180 37.565 -0.001"],"time_start":"2018-10-26T00:00:02.000Z","updated":"2022-05-24T00:01:31.705Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-26T23:59:59.000Z","id":"G2276681541-POCLOUD","original_format":"UMM_JSON","granule_size":"18.66663360595703","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181026-000002-e20181026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.687 + 0.003 37.548 180","-37.687 -180 37.548 -0.001"],"time_start":"2018-10-27T00:00:00.000Z","updated":"2022-05-24T00:47:35.591Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-27T23:59:59.000Z","id":"G2276691761-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181027-000000-e20181027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.703 + 0.001 37.53 180","-37.703 -180 37.53 -0.001"],"time_start":"2018-10-28T00:00:02.000Z","updated":"2022-05-23T23:58:33.522Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-28T23:59:59.000Z","id":"G2276681291-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181028-000002-e20181028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.731 + 0.002 37.58 180","-37.731 -180 37.58 -0.001"],"time_start":"2018-10-29T00:00:02.000Z","updated":"2022-05-24T00:10:30.502Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-29T23:59:59.000Z","id":"G2276683769-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181029-000002-e20181029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.122 + 0.001 37.478 180","-38.122 -180 37.478 -0.003"],"time_start":"2018-10-30T00:00:01.000Z","updated":"2022-05-24T00:14:37.889Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-30T23:59:59.000Z","id":"G2276684747-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181030-000001-e20181030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.581 + 0 37.522 180","-37.581 -180 37.522 -0.001"],"time_start":"2018-10-31T00:00:02.000Z","updated":"2022-05-24T00:38:33.975Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-10-31T23:59:59.000Z","id":"G2276689511-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181031-000002-e20181031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.594 + 0.003 37.535 180","-37.594 -180 37.535 0"],"time_start":"2018-11-01T00:00:02.000Z","updated":"2022-05-23T23:57:28.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-01T23:59:59.000Z","id":"G2276680566-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181101-000002-e20181101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.414 + 0.001 38.502 180","-37.414 -180 38.502 -0.002"],"time_start":"2018-11-02T00:00:02.000Z","updated":"2022-05-24T00:27:32.241Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-02T23:59:59.000Z","id":"G2276687219-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181102-000002-e20181102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.507 + 0 38.48 180","-37.507 -180 38.48 -0.001"],"time_start":"2018-11-03T00:00:02.000Z","updated":"2022-05-24T00:09:27.445Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-03T23:59:59.000Z","id":"G2276683666-POCLOUD","original_format":"UMM_JSON","granule_size":"17.253993034362793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181103-000002-e20181103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.645 + 0 38.22 180","-37.645 -180 38.22 -0.002"],"time_start":"2018-11-04T00:00:01.000Z","updated":"2022-05-24T00:08:30.000Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-04T23:59:59.000Z","id":"G2276683589-POCLOUD","original_format":"UMM_JSON","granule_size":"17.186745643615723","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181104-000001-e20181104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.63 + 0.003 38.455 180","-37.63 -180 38.455 -0.013"],"time_start":"2018-11-05T00:00:02.000Z","updated":"2022-05-24T00:40:35.114Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-05T23:59:59.000Z","id":"G2276689620-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181105-000002-e20181105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.511 + 0.001 38 180","-37.511 -180 38 -0.001"],"time_start":"2018-11-06T00:00:00.000Z","updated":"2022-05-24T00:08:33.887Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-06T23:59:59.000Z","id":"G2276683597-POCLOUD","original_format":"UMM_JSON","granule_size":"17.39244842529297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181106-000000-e20181106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.609 + 0.001 37.626 180","-37.609 -180 37.626 -0.002"],"time_start":"2018-11-07T00:00:02.000Z","updated":"2022-05-24T00:43:27.143Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-07T23:59:59.000Z","id":"G2276690090-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181107-000002-e20181107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.591 + 0.002 37.625 180","-37.591 -180 37.625 -0.001"],"time_start":"2018-11-08T00:00:01.000Z","updated":"2022-05-24T00:15:39.203Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-08T23:59:59.000Z","id":"G2276685006-POCLOUD","original_format":"UMM_JSON","granule_size":"18.364537239074707","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181108-000001-e20181108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.609 + 0 37.576 180","-37.609 -180 37.576 0"],"time_start":"2018-11-09T00:00:02.000Z","updated":"2022-05-24T00:23:32.692Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-09T23:59:58.000Z","id":"G2276686709-POCLOUD","original_format":"UMM_JSON","granule_size":"18.226396560668945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181109-000002-e20181109-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.629 + 0.001 37.61 180","-37.629 -180 37.61 -0.001"],"time_start":"2018-11-10T00:00:02.000Z","updated":"2022-05-24T00:31:26.970Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-10T23:59:59.000Z","id":"G2276688011-POCLOUD","original_format":"UMM_JSON","granule_size":"18.028682708740234","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181110-000002-e20181110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0.001 37.766 180","-37.75 -180 37.766 -0.001"],"time_start":"2018-11-11T00:00:01.000Z","updated":"2022-05-24T00:42:41.157Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-11T23:59:59.000Z","id":"G2276690040-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181111-000001-e20181111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.766 + 0 37.771 180","-37.766 -180 37.771 -0.001"],"time_start":"2018-11-12T00:00:02.000Z","updated":"2022-05-23T23:48:36.006Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-12T23:59:59.000Z","id":"G2276679029-POCLOUD","original_format":"UMM_JSON","granule_size":"18.024272918701172","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181112-000002-e20181112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.742 + 0.003 37.717 180","-37.742 -180 37.717 -0.001"],"time_start":"2018-11-13T00:00:00.000Z","updated":"2022-05-24T00:21:26.425Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-13T23:59:59.000Z","id":"G2276685899-POCLOUD","original_format":"UMM_JSON","granule_size":"18.185616493225098","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181113-000000-e20181113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0.001 37.807 180","-37.791 -180 37.807 0"],"time_start":"2018-11-14T00:00:01.000Z","updated":"2022-05-24T00:44:42.059Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-14T23:59:59.000Z","id":"G2276690190-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181114-000001-e20181114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.767 + 0.002 37.795 180","-37.767 -180 37.795 -0.002"],"time_start":"2018-11-15T00:00:02.000Z","updated":"2022-05-23T23:54:59.201Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-15T23:59:59.000Z","id":"G2276680391-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181115-000002-e20181115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.631 + 0.001 37.706 180","-37.631 -180 37.706 -0.003"],"time_start":"2018-11-16T00:00:02.000Z","updated":"2022-05-24T00:12:26.534Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-16T23:59:59.000Z","id":"G2276683929-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181116-000002-e20181116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0.001 37.712 180","-37.632 -180 37.712 0"],"time_start":"2018-11-17T00:00:01.000Z","updated":"2022-05-24T00:31:35.291Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-17T23:59:59.000Z","id":"G2276688033-POCLOUD","original_format":"UMM_JSON","granule_size":"15.950277328491211","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181117-000001-e20181117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0.001 37.686 180","-37.595 -180 37.686 0"],"time_start":"2018-11-18T00:00:02.000Z","updated":"2022-05-24T00:34:33.844Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-18T23:59:59.000Z","id":"G2276688728-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181118-000002-e20181118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.7 + 0.001 37.585 180","-37.7 -180 37.585 -0.002"],"time_start":"2018-11-19T00:00:00.000Z","updated":"2022-05-24T00:16:32.292Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-19T23:59:59.000Z","id":"G2276685060-POCLOUD","original_format":"UMM_JSON","granule_size":"18.352924346923828","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181119-000000-e20181119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.62 + 0.002 37.545 180","-37.62 -180 37.545 -0.005"],"time_start":"2018-11-20T00:00:02.000Z","updated":"2022-05-24T00:43:48.724Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-20T23:59:59.000Z","id":"G2276690123-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181120-000002-e20181120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.727 + 0 37.709 180","-37.727 -180 37.709 0"],"time_start":"2018-11-21T00:00:00.000Z","updated":"2022-05-24T00:32:30.730Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-21T23:59:59.000Z","id":"G2276688088-POCLOUD","original_format":"UMM_JSON","granule_size":"18.23473358154297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181121-000000-e20181121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.745 + 0.001 37.593 180","-37.745 -180 37.593 -0.002"],"time_start":"2018-11-22T00:00:02.000Z","updated":"2022-05-24T00:35:31.690Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-22T23:59:59.000Z","id":"G2276688799-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181122-000002-e20181122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.814 + 0.004 37.639 180","-37.814 -180 37.639 -0.004"],"time_start":"2018-11-23T00:00:02.000Z","updated":"2022-05-24T00:49:30.697Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-23T23:59:59.000Z","id":"G2276692662-POCLOUD","original_format":"UMM_JSON","granule_size":"18.108359336853027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181123-000002-e20181123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.786 + 0.001 37.777 180","-37.786 -180 37.777 -0.001"],"time_start":"2018-11-24T00:00:02.000Z","updated":"2022-05-23T23:50:31.753Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-24T23:59:59.000Z","id":"G2276679772-POCLOUD","original_format":"UMM_JSON","granule_size":"18.325393676757812","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181124-000002-e20181124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.743 + 0 37.768 180","-37.743 -180 37.768 -0.001"],"time_start":"2018-11-25T00:00:01.000Z","updated":"2022-05-24T00:27:37.250Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-25T23:59:59.000Z","id":"G2276687369-POCLOUD","original_format":"UMM_JSON","granule_size":"18.20019817352295","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181125-000001-e20181125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.783 + 0 37.598 180","-37.783 -180 37.598 0"],"time_start":"2018-11-26T00:00:02.000Z","updated":"2022-05-24T00:12:36.329Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-26T23:59:59.000Z","id":"G2276683986-POCLOUD","original_format":"UMM_JSON","granule_size":"18.189146041870117","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181126-000002-e20181126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.837 + 0.001 37.698 180","-37.837 -180 37.698 -0.001"],"time_start":"2018-11-27T00:00:02.000Z","updated":"2022-05-24T00:21:32.548Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-27T23:59:59.000Z","id":"G2276685921-POCLOUD","original_format":"UMM_JSON","granule_size":"17.63804531097412","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181127-000002-e20181127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.864 + 0.012 37.64 180","-37.864 -180 37.64 -0.007"],"time_start":"2018-11-28T00:00:02.000Z","updated":"2022-05-24T00:13:26.837Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-28T23:59:59.000Z","id":"G2276684589-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181128-000002-e20181128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.808 + 0.001 37.628 180","-37.808 -180 37.628 -0.002"],"time_start":"2018-11-29T00:00:02.000Z","updated":"2022-05-24T00:19:27.590Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-29T23:59:58.000Z","id":"G2276685706-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181129-000002-e20181129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.802 + 0.001 37.658 180","-37.802 -180 37.658 0"],"time_start":"2018-11-30T00:00:02.000Z","updated":"2022-05-23T23:56:37.606Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-11-30T23:59:59.000Z","id":"G2276680532-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181130-000002-e20181130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.639 + 0.006 37.577 180","-37.639 -180 37.577 -0.001"],"time_start":"2018-12-01T00:00:02.000Z","updated":"2022-05-23T23:55:34.456Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-01T23:59:58.000Z","id":"G2276680438-POCLOUD","original_format":"UMM_JSON","granule_size":"18.04755973815918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181201-000002-e20181201-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0 37.559 180","-37.636 -180 37.559 0"],"time_start":"2018-12-02T00:00:02.000Z","updated":"2022-05-24T00:24:38.486Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-02T23:59:59.000Z","id":"G2276686879-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181202-000002-e20181202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0 37.531 180","-37.658 -180 37.531 -0.001"],"time_start":"2018-12-03T00:00:01.000Z","updated":"2022-05-24T00:02:33.361Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-03T23:59:59.000Z","id":"G2276681625-POCLOUD","original_format":"UMM_JSON","granule_size":"18.41098690032959","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181203-000001-e20181203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.748 + 0 37.548 180","-37.748 -180 37.548 -0.003"],"time_start":"2018-12-04T00:00:01.000Z","updated":"2022-05-24T00:00:29.463Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-04T23:59:59.000Z","id":"G2276681448-POCLOUD","original_format":"UMM_JSON","granule_size":"18.684619903564453","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181204-000001-e20181204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.752 + 0.001 37.641 180","-37.752 -180 37.641 -0.004"],"time_start":"2018-12-05T00:00:01.000Z","updated":"2022-05-23T23:52:35.300Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-05T23:59:58.000Z","id":"G2276680261-POCLOUD","original_format":"UMM_JSON","granule_size":"19.072406768798828","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181205-000001-e20181205-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0 37.748 180","-37.824 -180 37.748 -0.002"],"time_start":"2018-12-06T00:00:02.000Z","updated":"2022-05-24T00:19:39.725Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-06T23:59:59.000Z","id":"G2276685764-POCLOUD","original_format":"UMM_JSON","granule_size":"18.990253448486328","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181206-000002-e20181206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.838 + 0.003 37.731 180","-37.838 -180 37.731 0"],"time_start":"2018-12-07T00:00:02.000Z","updated":"2022-05-24T00:00:29.199Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-07T23:59:59.000Z","id":"G2276681444-POCLOUD","original_format":"UMM_JSON","granule_size":"18.22114372253418","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181207-000002-e20181207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.878 + 0.001 37.722 180","-37.878 -180 37.722 0"],"time_start":"2018-12-08T00:00:02.000Z","updated":"2022-05-24T00:28:36.347Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-08T23:59:59.000Z","id":"G2276687720-POCLOUD","original_format":"UMM_JSON","granule_size":"18.861191749572754","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181208-000002-e20181208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.852 + 0 37.695 180","-37.852 -180 37.695 -0.001"],"time_start":"2018-12-09T00:00:02.000Z","updated":"2022-05-24T00:39:33.045Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-09T23:59:58.000Z","id":"G2276689562-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181209-000002-e20181209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.785 + 0.002 37.75 180","-37.785 -180 37.75 0"],"time_start":"2018-12-10T00:00:02.000Z","updated":"2022-05-24T00:03:35.728Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-10T23:59:59.000Z","id":"G2276682050-POCLOUD","original_format":"UMM_JSON","granule_size":"18.280491828918457","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181210-000002-e20181210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0 37.628 180","-37.695 -180 37.628 -0.001"],"time_start":"2018-12-11T00:00:02.000Z","updated":"2022-05-23T23:53:29.041Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-11T23:59:59.000Z","id":"G2276680305-POCLOUD","original_format":"UMM_JSON","granule_size":"18.116482734680176","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181211-000002-e20181211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.553 + 0 37.654 180","-37.553 -180 37.654 -0.001"],"time_start":"2018-12-12T00:00:00.000Z","updated":"2022-05-24T00:08:36.327Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-12T23:59:59.000Z","id":"G2276683610-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181212-000000-e20181212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.567 + 0 37.548 180","-37.567 -180 37.548 -0.002"],"time_start":"2018-12-13T00:00:01.000Z","updated":"2022-05-24T00:15:33.671Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-13T23:59:59.000Z","id":"G2276684996-POCLOUD","original_format":"UMM_JSON","granule_size":"16.046117782592773","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181213-000001-e20181213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.617 + 0.001 37.574 180","-37.617 -180 37.574 0"],"time_start":"2018-12-14T00:00:00.000Z","updated":"2022-05-23T23:57:28.693Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-14T23:59:59.000Z","id":"G2276680563-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181214-000000-e20181214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0.001 37.525 180","-37.65 -180 37.525 -0.001"],"time_start":"2018-12-15T00:00:01.000Z","updated":"2022-05-23T23:52:26.090Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-15T23:59:59.000Z","id":"G2276679997-POCLOUD","original_format":"UMM_JSON","granule_size":"18.223130226135254","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181215-000001-e20181215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.571 + 0 37.471 180","-37.571 -180 37.471 -0.002"],"time_start":"2018-12-16T00:00:00.000Z","updated":"2022-05-24T00:35:38.545Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-16T23:59:58.000Z","id":"G2276688816-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181216-000000-e20181216-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.583 + 0.001 37.461 180","-37.583 -180 37.461 -0.004"],"time_start":"2018-12-17T00:00:02.000Z","updated":"2022-05-24T00:40:40.727Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-17T23:59:59.000Z","id":"G2276689638-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181217-000002-e20181217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.584 + 0 37.472 180","-37.584 -180 37.472 -0.001"],"time_start":"2018-12-18T00:00:02.000Z","updated":"2022-05-24T00:32:45.920Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-18T23:59:59.000Z","id":"G2276688552-POCLOUD","original_format":"UMM_JSON","granule_size":"15.843840599060059","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181218-000002-e20181218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.554 + 0.001 37.601 180","-37.554 -180 37.601 -0.003"],"time_start":"2018-12-19T00:00:01.000Z","updated":"2022-05-23T23:47:32.543Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-19T23:59:59.000Z","id":"G2276677598-POCLOUD","original_format":"UMM_JSON","granule_size":"15.797947883605957","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181219-000001-e20181219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.336 + 0.001 39.064 180","-37.336 -180 39.064 0"],"time_start":"2018-12-20T00:00:02.000Z","updated":"2022-05-23T23:48:30.636Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-20T23:59:59.000Z","id":"G2276678967-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181220-000002-e20181220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.301 + 0.003 38.983 180","-37.301 -180 38.983 -0.001"],"time_start":"2018-12-21T00:00:01.000Z","updated":"2022-05-24T00:38:28.643Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-21T23:59:59.000Z","id":"G2276689498-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181221-000001-e20181221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.468 + 0.001 37.759 180","-37.468 -180 37.759 -0.001"],"time_start":"2018-12-22T00:00:00.000Z","updated":"2022-05-23T23:57:30.216Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-22T23:59:59.000Z","id":"G2276680572-POCLOUD","original_format":"UMM_JSON","granule_size":"16.946093559265137","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181222-000000-e20181222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.464 + 0.002 37.904 180","-37.464 -180 37.904 -0.001"],"time_start":"2018-12-23T00:00:00.000Z","updated":"2022-05-24T00:02:31.890Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-23T23:59:59.000Z","id":"G2276681616-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181223-000000-e20181223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.525 + 0 37.569 180","-37.525 -180 37.569 0"],"time_start":"2018-12-24T00:00:01.000Z","updated":"2022-05-24T00:47:39.523Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-24T23:59:59.000Z","id":"G2276691791-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181224-000001-e20181224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.519 + 0 39.168 180","-37.519 -180 39.168 -0.001"],"time_start":"2018-12-25T00:00:02.000Z","updated":"2022-05-23T23:54:31.480Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-25T23:59:59.000Z","id":"G2276680371-POCLOUD","original_format":"UMM_JSON","granule_size":"16.93170166015625","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181225-000002-e20181225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.56 + 0.001 38.445 180","-37.56 -180 38.445 -0.002"],"time_start":"2018-12-26T00:00:02.000Z","updated":"2022-05-24T00:07:34.145Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-26T23:59:59.000Z","id":"G2276683500-POCLOUD","original_format":"UMM_JSON","granule_size":"16.99890422821045","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181226-000002-e20181226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0 37.553 180","-37.603 -180 37.553 0"],"time_start":"2018-12-27T00:00:02.000Z","updated":"2022-05-24T00:00:34.065Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-27T23:59:58.000Z","id":"G2276681457-POCLOUD","original_format":"UMM_JSON","granule_size":"17.3846435546875","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181227-000002-e20181227-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.601 + 0.001 37.633 180","-37.601 -180 37.633 -0.001"],"time_start":"2018-12-28T00:00:01.000Z","updated":"2022-05-24T00:01:36.369Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-28T23:59:59.000Z","id":"G2276681551-POCLOUD","original_format":"UMM_JSON","granule_size":"17.94404697418213","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181228-000001-e20181228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.499 + 0.003 37.659 180","-37.499 -180 37.659 -0.004"],"time_start":"2018-12-29T00:00:01.000Z","updated":"2022-05-24T00:22:35.612Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-29T23:59:58.000Z","id":"G2276686570-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181229-000001-e20181229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.377 + 0.001 37.571 180","-37.377 -180 37.571 -0.001"],"time_start":"2018-12-30T00:00:02.000Z","updated":"2022-05-23T23:48:36.387Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-30T23:59:59.000Z","id":"G2276679032-POCLOUD","original_format":"UMM_JSON","granule_size":"17.8910551071167","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181230-000002-e20181230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.457 + 0 37.635 180","-37.457 -180 37.635 -0.001"],"time_start":"2018-12-31T00:00:01.000Z","updated":"2022-05-23T23:48:09.060Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2018-12-31T23:59:59.000Z","id":"G2276678557-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20181231-000001-e20181231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.681 + 0.001 37.54 180","-37.681 -180 37.54 -0.001"],"time_start":"2019-01-01T00:00:02.000Z","updated":"2022-05-23T23:58:29.561Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-01T23:59:59.000Z","id":"G2276681281-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190101-000002-e20190101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0.003 37.723 180","-37.658 -180 37.723 -0.001"],"time_start":"2019-01-02T00:00:02.000Z","updated":"2022-05-24T00:08:32.922Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-02T23:59:59.000Z","id":"G2276683595-POCLOUD","original_format":"UMM_JSON","granule_size":"18.328234672546387","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190102-000002-e20190102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.704 + 0 37.631 180","-37.704 -180 37.631 -0.001"],"time_start":"2019-01-03T00:00:01.000Z","updated":"2022-05-24T00:28:33.542Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-03T23:59:59.000Z","id":"G2276687704-POCLOUD","original_format":"UMM_JSON","granule_size":"18.629497528076172","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190103-000001-e20190103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.713 + 0.001 37.644 180","-37.713 -180 37.644 -0.001"],"time_start":"2019-01-04T00:00:02.000Z","updated":"2022-05-24T00:11:28.410Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-04T23:59:59.000Z","id":"G2276683823-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190104-000002-e20190104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.635 + 0.003 37.601 180","-37.635 -180 37.601 -0.003"],"time_start":"2019-01-05T00:00:02.000Z","updated":"2022-05-24T00:05:13.758Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-05T23:59:59.000Z","id":"G2276682585-POCLOUD","original_format":"UMM_JSON","granule_size":"18.95878314971924","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190105-000002-e20190105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.64 + 0.005 37.597 180","-37.64 -180 37.597 0"],"time_start":"2019-01-06T00:00:02.000Z","updated":"2022-05-24T00:24:33.643Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-06T23:59:59.000Z","id":"G2276686856-POCLOUD","original_format":"UMM_JSON","granule_size":"18.60636043548584","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190106-000002-e20190106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0.002 37.609 180","-37.658 -180 37.609 -0.001"],"time_start":"2019-01-07T00:00:02.000Z","updated":"2022-05-23T23:53:27.345Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-07T23:59:59.000Z","id":"G2276680302-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190107-000002-e20190107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.683 + 0.001 37.586 180","-37.683 -180 37.586 -0.001"],"time_start":"2019-01-08T00:00:02.000Z","updated":"2022-05-24T00:49:34.014Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-08T23:59:59.000Z","id":"G2276692704-POCLOUD","original_format":"UMM_JSON","granule_size":"18.44411563873291","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190108-000002-e20190108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.801 + 0.001 37.608 180","-37.801 -180 37.608 0"],"time_start":"2019-01-09T00:00:02.000Z","updated":"2022-05-24T00:49:39.584Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-09T23:59:59.000Z","id":"G2276692760-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190109-000002-e20190109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.871 + 0 37.703 180","-37.871 -180 37.703 -0.001"],"time_start":"2019-01-10T00:00:01.000Z","updated":"2022-05-23T23:48:06.585Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-10T23:59:59.000Z","id":"G2276678515-POCLOUD","original_format":"UMM_JSON","granule_size":"17.5926570892334","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190110-000001-e20190110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.86 + 0.001 37.72 180","-37.86 -180 37.72 0"],"time_start":"2019-01-11T00:00:01.000Z","updated":"2022-05-24T00:03:28.689Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-11T23:59:59.000Z","id":"G2276682030-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190111-000001-e20190111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.84 + 0.001 37.752 180","-37.84 -180 37.752 -0.003"],"time_start":"2019-01-12T00:00:01.000Z","updated":"2022-05-24T00:32:47.391Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-12T23:59:58.000Z","id":"G2276688553-POCLOUD","original_format":"UMM_JSON","granule_size":"17.705415725708008","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190112-000001-e20190112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.864 + 0.003 37.642 180","-37.864 -180 37.642 -0.001"],"time_start":"2019-01-13T00:00:02.000Z","updated":"2022-05-23T23:56:32.313Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-13T23:59:59.000Z","id":"G2276680508-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190113-000002-e20190113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.737 + 0.001 37.628 180","-37.737 -180 37.628 -0.001"],"time_start":"2019-01-14T00:00:02.000Z","updated":"2022-05-24T00:37:30.467Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-14T23:59:59.000Z","id":"G2276688924-POCLOUD","original_format":"UMM_JSON","granule_size":"16.22423553466797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190114-000002-e20190114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.778 + 0.001 37.679 180","-37.778 -180 37.679 -0.001"],"time_start":"2019-01-15T00:00:02.000Z","updated":"2022-05-24T00:00:33.559Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-15T23:59:59.000Z","id":"G2276681454-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190115-000002-e20190115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.749 + 0.001 37.653 180","-37.749 -180 37.653 -0.002"],"time_start":"2019-01-16T00:00:02.000Z","updated":"2022-05-23T23:48:28.800Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-16T23:59:59.000Z","id":"G2276678928-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190116-000002-e20190116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.727 + 0.006 37.632 180","-37.727 -180 37.632 -0.001"],"time_start":"2019-01-17T00:00:02.000Z","updated":"2022-05-24T00:18:34.824Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-17T23:59:59.000Z","id":"G2276685631-POCLOUD","original_format":"UMM_JSON","granule_size":"18.060587882995605","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190117-000002-e20190117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.772 + 0 37.678 180","-37.772 -180 37.678 -0.001"],"time_start":"2019-01-18T00:00:02.000Z","updated":"2022-05-24T00:35:32.194Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-18T23:59:59.000Z","id":"G2276688795-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190118-000002-e20190118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.867 + 0.002 37.526 180","-37.867 -180 37.526 -0.002"],"time_start":"2019-01-19T00:00:02.000Z","updated":"2022-05-24T00:41:35.012Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-19T23:59:59.000Z","id":"G2276689683-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190119-000002-e20190119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.856 + 0.003 37.642 180","-37.856 -180 37.642 -0.001"],"time_start":"2019-01-20T00:00:00.000Z","updated":"2022-05-24T00:19:37.787Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-20T23:59:59.000Z","id":"G2276685755-POCLOUD","original_format":"UMM_JSON","granule_size":"17.899746894836426","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190120-000000-e20190120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.845 + 0 37.63 180","-37.845 -180 37.63 -0.001"],"time_start":"2019-01-21T00:00:02.000Z","updated":"2022-05-23T23:47:36.256Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-21T23:59:59.000Z","id":"G2276677645-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190121-000002-e20190121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.839 + 0 37.757 180","-37.839 -180 37.757 -0.001"],"time_start":"2019-01-22T00:00:02.000Z","updated":"2022-05-23T23:51:32.054Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-22T23:59:59.000Z","id":"G2276679866-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190122-000002-e20190122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.808 + 0.001 37.694 180","-37.808 -180 37.694 -0.001"],"time_start":"2019-01-23T00:00:01.000Z","updated":"2022-05-24T00:00:27.656Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-23T23:59:59.000Z","id":"G2276681441-POCLOUD","original_format":"UMM_JSON","granule_size":"18.040825843811035","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190123-000001-e20190123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.792 + 0.008 37.588 180","-37.792 -180 37.588 -0.002"],"time_start":"2019-01-24T00:00:01.000Z","updated":"2022-05-24T00:49:30.824Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-24T23:59:59.000Z","id":"G2276692663-POCLOUD","original_format":"UMM_JSON","granule_size":"18.05294895172119","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190124-000001-e20190124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.825 + 0.002 37.742 180","-37.825 -180 37.742 -0.003"],"time_start":"2019-01-25T00:00:02.000Z","updated":"2022-05-24T00:30:35.429Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-25T23:59:59.000Z","id":"G2276687942-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190125-000002-e20190125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.808 + 0.001 37.628 180","-37.808 -180 37.628 -0.001"],"time_start":"2019-01-26T00:00:00.000Z","updated":"2022-05-24T00:37:33.517Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-26T23:59:58.000Z","id":"G2276688932-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190126-000000-e20190126-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.754 + 0 37.773 180","-37.754 -180 37.773 -0.001"],"time_start":"2019-01-27T00:00:02.000Z","updated":"2022-05-24T00:47:29.667Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-27T23:59:59.000Z","id":"G2276691739-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190127-000002-e20190127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.754 + 0.005 37.801 180","-37.754 -180 37.801 -0.001"],"time_start":"2019-01-28T00:00:02.000Z","updated":"2022-05-24T00:29:29.540Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-28T23:59:58.000Z","id":"G2276687827-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190128-000002-e20190128-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.591 + 0.002 37.761 180","-37.591 -180 37.761 0"],"time_start":"2019-01-29T00:00:02.000Z","updated":"2022-05-24T00:06:41.740Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-29T23:59:58.000Z","id":"G2276682876-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190129-000002-e20190129-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.552 + 0 37.581 180","-37.552 -180 37.581 -0.003"],"time_start":"2019-01-30T00:00:02.000Z","updated":"2022-05-24T00:32:45.585Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-30T23:59:59.000Z","id":"G2276688548-POCLOUD","original_format":"UMM_JSON","granule_size":"18.316624641418457","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190130-000002-e20190130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.574 + 0 37.633 180","-37.574 -180 37.633 -0.002"],"time_start":"2019-01-31T00:00:02.000Z","updated":"2022-05-24T00:15:33.871Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-01-31T23:59:59.000Z","id":"G2276684997-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190131-000002-e20190131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.002 37.771 180","-37.669 -180 37.771 -0.001"],"time_start":"2019-02-01T00:00:01.000Z","updated":"2022-05-24T00:37:35.748Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-01T23:59:59.000Z","id":"G2276688936-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190201-000001-e20190201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.756 + 0.002 37.857 180","-37.756 -180 37.857 -0.003"],"time_start":"2019-02-02T00:00:01.000Z","updated":"2022-05-24T00:24:31.126Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-02T23:59:59.000Z","id":"G2276686850-POCLOUD","original_format":"UMM_JSON","granule_size":"18.781084060668945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190202-000001-e20190202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.742 + 0.003 37.719 180","-37.742 -180 37.719 -0.001"],"time_start":"2019-02-03T00:00:02.000Z","updated":"2022-05-24T00:00:40.251Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-03T23:59:59.000Z","id":"G2276681481-POCLOUD","original_format":"UMM_JSON","granule_size":"18.723671913146973","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190203-000002-e20190203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.782 + 0.001 37.858 180","-37.782 -180 37.858 0"],"time_start":"2019-02-04T00:00:01.000Z","updated":"2022-05-24T00:15:39.468Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-04T23:59:59.000Z","id":"G2276685009-POCLOUD","original_format":"UMM_JSON","granule_size":"18.36322593688965","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190204-000001-e20190204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.751 + 0.001 37.86 180","-37.751 -180 37.86 0"],"time_start":"2019-02-05T00:00:01.000Z","updated":"2022-05-24T00:25:29.249Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-05T23:59:59.000Z","id":"G2276686975-POCLOUD","original_format":"UMM_JSON","granule_size":"17.92208766937256","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190205-000001-e20190205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0.001 37.759 180","-37.641 -180 37.759 -0.001"],"time_start":"2019-02-06T00:00:02.000Z","updated":"2022-05-24T00:44:45.331Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-06T23:59:59.000Z","id":"G2276690224-POCLOUD","original_format":"UMM_JSON","granule_size":"17.67807960510254","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190206-000002-e20190206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.615 + 0.004 37.873 180","-37.615 -180 37.873 -0.007"],"time_start":"2019-02-07T00:00:02.000Z","updated":"2022-05-24T00:44:36.652Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-07T23:59:59.000Z","id":"G2276690216-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190207-000002-e20190207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.515 + 0.001 39.708 180","-37.515 -180 39.708 -0.001"],"time_start":"2019-02-08T00:00:01.000Z","updated":"2022-05-24T00:18:42.565Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-08T23:59:58.000Z","id":"G2276685671-POCLOUD","original_format":"UMM_JSON","granule_size":"17.94606304168701","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190208-000001-e20190208-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.573 + 0.001 39.42 180","-37.573 -180 39.42 0"],"time_start":"2019-02-09T00:00:01.000Z","updated":"2022-05-23T23:51:29.271Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-09T23:59:59.000Z","id":"G2276679865-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190209-000001-e20190209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0 38.091 180","-37.616 -180 38.091 -0.001"],"time_start":"2019-02-10T00:00:01.000Z","updated":"2022-05-24T00:31:34.991Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-10T23:59:59.000Z","id":"G2276688028-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190210-000001-e20190210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0 37.509 180","-37.565 -180 37.509 0"],"time_start":"2019-02-11T00:00:00.000Z","updated":"2022-05-24T00:32:50.438Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-11T23:59:59.000Z","id":"G2276688565-POCLOUD","original_format":"UMM_JSON","granule_size":"18.23338031768799","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190211-000000-e20190211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.547 + 0.005 37.547 180","-37.547 -180 37.547 -0.001"],"time_start":"2019-02-12T00:00:02.000Z","updated":"2022-05-24T00:13:34.770Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-12T23:59:58.000Z","id":"G2276684609-POCLOUD","original_format":"UMM_JSON","granule_size":"18.121158599853516","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190212-000002-e20190212-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.588 + 0.002 37.548 180","-37.588 -180 37.548 -0.002"],"time_start":"2019-02-13T00:00:02.000Z","updated":"2022-05-24T00:05:31.317Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-13T23:59:59.000Z","id":"G2276682627-POCLOUD","original_format":"UMM_JSON","granule_size":"17.996366500854492","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190213-000002-e20190213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.547 + 0.001 37.509 180","-37.547 -180 37.509 -0.003"],"time_start":"2019-02-14T00:00:01.000Z","updated":"2022-05-24T00:28:26.909Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-14T23:59:59.000Z","id":"G2276687687-POCLOUD","original_format":"UMM_JSON","granule_size":"17.55036735534668","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190214-000001-e20190214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.583 + 0.001 37.495 180","-37.583 -180 37.495 0"],"time_start":"2019-02-15T00:00:02.000Z","updated":"2022-05-24T00:35:29.444Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-15T23:59:59.000Z","id":"G2276688784-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190215-000002-e20190215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.538 + 0.002 37.399 180","-37.538 -180 37.399 -0.001"],"time_start":"2019-02-16T00:00:00.000Z","updated":"2022-05-24T00:16:38.557Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-16T23:59:59.000Z","id":"G2276685095-POCLOUD","original_format":"UMM_JSON","granule_size":"17.84160804748535","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190216-000000-e20190216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.46 + 0.001 37.435 180","-37.46 -180 37.435 -0.001"],"time_start":"2019-02-17T00:00:02.000Z","updated":"2022-05-24T00:34:31.515Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-17T23:59:59.000Z","id":"G2276688715-POCLOUD","original_format":"UMM_JSON","granule_size":"17.837411880493164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190217-000002-e20190217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.615 + 0 37.471 180","-37.615 -180 37.471 -0.001"],"time_start":"2019-02-18T00:00:01.000Z","updated":"2022-05-23T23:57:33.819Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-18T23:59:59.000Z","id":"G2276680585-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190218-000001-e20190218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.664 + 0.003 37.447 180","-37.664 -180 37.447 -0.001"],"time_start":"2019-02-19T00:00:02.000Z","updated":"2022-05-23T23:54:34.982Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-19T23:59:59.000Z","id":"G2276680369-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190219-000002-e20190219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.676 + 0.001 37.562 180","-37.676 -180 37.562 -0.005"],"time_start":"2019-02-20T00:00:02.000Z","updated":"2022-05-24T00:34:37.237Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-20T23:59:59.000Z","id":"G2276688732-POCLOUD","original_format":"UMM_JSON","granule_size":"18.35693073272705","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190220-000002-e20190220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.666 + 0.001 37.608 180","-37.666 -180 37.608 -0.001"],"time_start":"2019-02-21T00:00:02.000Z","updated":"2022-05-24T00:44:30.974Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-21T23:59:59.000Z","id":"G2276690181-POCLOUD","original_format":"UMM_JSON","granule_size":"18.39249038696289","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190221-000002-e20190221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.619 + 0.003 37.49 180","-37.619 -180 37.49 0"],"time_start":"2019-02-22T00:00:00.000Z","updated":"2022-05-24T00:49:30.514Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-22T23:59:59.000Z","id":"G2276692683-POCLOUD","original_format":"UMM_JSON","granule_size":"18.80367374420166","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190222-000000-e20190222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.692 + 0.001 37.591 180","-37.692 -180 37.591 0"],"time_start":"2019-02-23T00:00:02.000Z","updated":"2022-05-24T00:19:35.553Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-23T23:59:59.000Z","id":"G2276685738-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190223-000002-e20190223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.797 + 0.001 37.529 180","-37.797 -180 37.529 0"],"time_start":"2019-02-24T00:00:01.000Z","updated":"2022-05-24T00:06:32.545Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-24T23:59:59.000Z","id":"G2276682833-POCLOUD","original_format":"UMM_JSON","granule_size":"18.51508140563965","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190224-000001-e20190224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.667 + 0.001 37.502 180","-37.667 -180 37.502 0"],"time_start":"2019-02-25T00:00:01.000Z","updated":"2022-05-24T00:34:35.913Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-25T23:59:59.000Z","id":"G2276688729-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190225-000001-e20190225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.917 + 0 37.41 180","-37.917 -180 37.41 -0.001"],"time_start":"2019-02-26T00:00:02.000Z","updated":"2022-05-24T00:00:36.876Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-26T23:59:59.000Z","id":"G2276681466-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190226-000002-e20190226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.674 + 0.003 37.461 180","-37.674 -180 37.461 -0.001"],"time_start":"2019-02-27T00:00:01.000Z","updated":"2022-05-23T23:56:27.247Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-27T23:59:59.000Z","id":"G2276680499-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190227-000001-e20190227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.802 + 0 37.631 180","-37.802 -180 37.631 -0.002"],"time_start":"2019-02-28T00:00:02.000Z","updated":"2022-05-24T00:05:33.737Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-02-28T23:59:59.000Z","id":"G2276682636-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190228-000002-e20190228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.519 + 0.002 37.618 180","-37.519 -180 37.618 -0.001"],"time_start":"2019-03-01T00:00:02.000Z","updated":"2022-05-24T00:23:26.346Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-01T23:59:59.000Z","id":"G2276686662-POCLOUD","original_format":"UMM_JSON","granule_size":"17.585942268371582","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190301-000002-e20190301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.652 + 0.001 37.681 180","-37.652 -180 37.681 0"],"time_start":"2019-03-02T00:00:02.000Z","updated":"2022-05-24T00:47:26.462Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-02T23:59:59.000Z","id":"G2276691418-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190302-000002-e20190302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.676 + 0.001 37.656 180","-37.676 -180 37.656 -0.001"],"time_start":"2019-03-03T00:00:00.000Z","updated":"2022-05-24T00:20:33.396Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-03T23:59:59.000Z","id":"G2276685822-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190303-000000-e20190303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.646 + 0.003 37.555 180","-37.646 -180 37.555 -0.004"],"time_start":"2019-03-04T00:00:01.000Z","updated":"2022-05-24T00:25:32.848Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-04T23:59:59.000Z","id":"G2276686991-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190304-000001-e20190304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.605 + 0.002 37.593 180","-37.605 -180 37.593 -0.003"],"time_start":"2019-03-05T00:00:02.000Z","updated":"2022-05-24T00:22:31.469Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-05T23:59:59.000Z","id":"G2276686475-POCLOUD","original_format":"UMM_JSON","granule_size":"17.990992546081543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190305-000002-e20190305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.629 + 0.001 37.631 180","-37.629 -180 37.631 -0.005"],"time_start":"2019-03-06T00:00:02.000Z","updated":"2022-05-24T00:08:29.178Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-06T23:59:59.000Z","id":"G2276683588-POCLOUD","original_format":"UMM_JSON","granule_size":"17.9346342086792","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190306-000002-e20190306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.679 + 0 37.594 180","-37.679 -180 37.594 -0.001"],"time_start":"2019-03-07T00:00:01.000Z","updated":"2022-05-24T00:24:31.228Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-07T23:59:59.000Z","id":"G2276686848-POCLOUD","original_format":"UMM_JSON","granule_size":"17.651533126831055","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190307-000001-e20190307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0.001 37.706 180","-37.777 -180 37.706 -0.001"],"time_start":"2019-03-08T00:00:02.000Z","updated":"2022-05-24T00:17:27.330Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-08T23:59:59.000Z","id":"G2276685255-POCLOUD","original_format":"UMM_JSON","granule_size":"17.180604934692383","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190308-000002-e20190308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.801 + 0 37.713 180","-37.801 -180 37.713 0"],"time_start":"2019-03-09T00:00:00.000Z","updated":"2022-05-23T23:59:30.733Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-09T23:59:59.000Z","id":"G2276681334-POCLOUD","original_format":"UMM_JSON","granule_size":"15.657307624816895","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190309-000000-e20190309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.001 37.768 180","-37.769 -180 37.768 0"],"time_start":"2019-03-10T00:00:02.000Z","updated":"2022-05-23T23:53:28.893Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-10T23:59:59.000Z","id":"G2276680309-POCLOUD","original_format":"UMM_JSON","granule_size":"15.739960670471191","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190310-000002-e20190310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0.001 37.813 180","-37.791 -180 37.813 -0.001"],"time_start":"2019-03-11T00:00:02.000Z","updated":"2022-05-23T23:56:32.480Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-11T23:59:59.000Z","id":"G2276680509-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190311-000002-e20190311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.743 + 0.001 37.741 180","-37.743 -180 37.741 -0.001"],"time_start":"2019-03-12T00:00:02.000Z","updated":"2022-05-24T00:25:26.584Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-12T23:59:59.000Z","id":"G2276686969-POCLOUD","original_format":"UMM_JSON","granule_size":"16.00920009613037","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190312-000002-e20190312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.691 + 0 37.762 180","-37.691 -180 37.762 -0.002"],"time_start":"2019-03-13T00:00:02.000Z","updated":"2022-05-23T23:48:40.666Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-13T23:59:59.000Z","id":"G2276679038-POCLOUD","original_format":"UMM_JSON","granule_size":"18.57923984527588","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190313-000002-e20190313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.671 + 0.002 37.706 180","-37.671 -180 37.706 -0.001"],"time_start":"2019-03-14T00:00:02.000Z","updated":"2022-05-24T00:41:35.433Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-14T23:59:59.000Z","id":"G2276689682-POCLOUD","original_format":"UMM_JSON","granule_size":"18.40439224243164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190314-000002-e20190314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.66 + 0.006 37.763 180","-37.66 -180 37.763 -0.001"],"time_start":"2019-03-15T00:00:00.000Z","updated":"2022-05-24T00:28:30.216Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-15T23:59:59.000Z","id":"G2276687732-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190315-000000-e20190315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.611 + 0.001 37.755 180","-37.611 -180 37.755 -0.001"],"time_start":"2019-03-16T00:00:02.000Z","updated":"2022-05-23T23:53:28.281Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-16T23:59:59.000Z","id":"G2276680304-POCLOUD","original_format":"UMM_JSON","granule_size":"17.969057083129883","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190316-000002-e20190316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.694 + 0.003 37.75 180","-37.694 -180 37.75 -0.001"],"time_start":"2019-03-17T00:00:02.000Z","updated":"2022-05-24T00:33:31.592Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-17T23:59:59.000Z","id":"G2276688635-POCLOUD","original_format":"UMM_JSON","granule_size":"17.70470905303955","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190317-000002-e20190317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.728 + 0 37.656 180","-37.728 -180 37.656 -0.004"],"time_start":"2019-03-18T00:00:01.000Z","updated":"2022-05-23T23:53:36.017Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-18T23:59:59.000Z","id":"G2276680330-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190318-000001-e20190318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.001 37.625 180","-37.769 -180 37.625 0"],"time_start":"2019-03-19T00:00:02.000Z","updated":"2022-05-24T00:01:31.179Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-19T23:59:59.000Z","id":"G2276681537-POCLOUD","original_format":"UMM_JSON","granule_size":"18.039435386657715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190319-000002-e20190319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.794 + 0.001 37.83 180","-37.794 -180 37.83 0"],"time_start":"2019-03-20T00:00:00.000Z","updated":"2022-05-24T00:41:37.497Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-20T23:59:58.000Z","id":"G2276689685-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190320-000000-e20190320-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0.001 37.792 180","-37.747 -180 37.792 0"],"time_start":"2019-03-21T00:00:02.000Z","updated":"2022-05-23T23:53:37.861Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-21T23:59:59.000Z","id":"G2276680336-POCLOUD","original_format":"UMM_JSON","granule_size":"17.774571418762207","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190321-000002-e20190321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.706 + 0 37.787 180","-37.706 -180 37.787 0"],"time_start":"2019-03-22T00:00:02.000Z","updated":"2022-05-24T00:14:29.078Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-22T23:59:59.000Z","id":"G2276684713-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190322-000002-e20190322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.794 + 0.001 37.688 180","-37.794 -180 37.688 -0.002"],"time_start":"2019-03-23T00:00:02.000Z","updated":"2022-05-23T23:52:29.711Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-23T23:59:59.000Z","id":"G2276680248-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190323-000002-e20190323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.825 + 0.001 37.614 180","-37.825 -180 37.614 0"],"time_start":"2019-03-24T00:00:02.000Z","updated":"2022-05-24T00:46:35.220Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-24T23:59:59.000Z","id":"G2276690959-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190324-000002-e20190324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0 37.713 180","-37.824 -180 37.713 0"],"time_start":"2019-03-25T00:00:01.000Z","updated":"2022-05-24T00:02:38.052Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-25T23:59:59.000Z","id":"G2276681634-POCLOUD","original_format":"UMM_JSON","granule_size":"17.77857208251953","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190325-000001-e20190325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.755 + 0 37.688 180","-37.755 -180 37.688 -0.001"],"time_start":"2019-03-26T00:00:01.000Z","updated":"2022-05-24T00:25:35.148Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-26T23:59:59.000Z","id":"G2276686999-POCLOUD","original_format":"UMM_JSON","granule_size":"17.846095085144043","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190326-000001-e20190326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.778 + 0 37.662 180","-37.778 -180 37.662 -0.001"],"time_start":"2019-03-27T00:00:01.000Z","updated":"2022-05-24T00:46:35.995Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-27T23:59:59.000Z","id":"G2276690971-POCLOUD","original_format":"UMM_JSON","granule_size":"17.58627700805664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190327-000001-e20190327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.001 37.566 180","-37.669 -180 37.566 -0.001"],"time_start":"2019-03-28T00:00:00.000Z","updated":"2022-05-24T00:49:26.323Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-28T23:59:59.000Z","id":"G2276692658-POCLOUD","original_format":"UMM_JSON","granule_size":"17.922663688659668","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190328-000000-e20190328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.61 + 0.001 37.517 180","-37.61 -180 37.517 0"],"time_start":"2019-03-29T00:00:01.000Z","updated":"2022-05-24T00:20:32.736Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-29T23:59:59.000Z","id":"G2276685815-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190329-000001-e20190329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.622 + 0.003 37.59 180","-37.622 -180 37.59 -0.002"],"time_start":"2019-03-30T00:00:00.000Z","updated":"2022-05-24T00:08:31.224Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-30T23:59:59.000Z","id":"G2276683591-POCLOUD","original_format":"UMM_JSON","granule_size":"18.03603172302246","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190330-000000-e20190330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.739 + 0 37.634 180","-37.739 -180 37.634 -0.001"],"time_start":"2019-03-31T00:00:01.000Z","updated":"2022-05-24T00:26:30.532Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-03-31T23:59:59.000Z","id":"G2276687096-POCLOUD","original_format":"UMM_JSON","granule_size":"18.39244842529297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190331-000001-e20190331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.829 + 0.002 37.735 180","-37.829 -180 37.735 0"],"time_start":"2019-04-01T00:00:02.000Z","updated":"2022-05-24T00:44:27.830Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-01T23:59:59.000Z","id":"G2276690176-POCLOUD","original_format":"UMM_JSON","granule_size":"18.20011615753174","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190401-000002-e20190401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.817 + 0 37.753 180","-37.817 -180 37.753 -0.003"],"time_start":"2019-04-02T00:00:02.000Z","updated":"2022-05-24T00:37:30.374Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-02T23:59:59.000Z","id":"G2276688926-POCLOUD","original_format":"UMM_JSON","granule_size":"18.506997108459473","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190402-000002-e20190402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.85 + 0 37.711 180","-37.85 -180 37.711 0"],"time_start":"2019-04-03T00:00:02.000Z","updated":"2022-05-24T00:35:30.205Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-03T23:59:59.000Z","id":"G2276688786-POCLOUD","original_format":"UMM_JSON","granule_size":"18.75133991241455","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190403-000002-e20190403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.853 + 0.001 37.705 180","-37.853 -180 37.705 -0.001"],"time_start":"2019-04-04T00:00:02.000Z","updated":"2022-05-24T00:39:37.288Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-04T23:59:59.000Z","id":"G2276689568-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190404-000002-e20190404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.846 + 0.001 37.714 180","-37.846 -180 37.714 -0.001"],"time_start":"2019-04-05T00:00:01.000Z","updated":"2022-05-24T00:20:29.094Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-05T23:59:59.000Z","id":"G2276685804-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190405-000001-e20190405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.724 + 0.003 37.574 180","-37.724 -180 37.574 -0.001"],"time_start":"2019-04-06T00:00:02.000Z","updated":"2022-05-24T00:27:36.800Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-06T23:59:59.000Z","id":"G2276687339-POCLOUD","original_format":"UMM_JSON","granule_size":"18.200706481933594","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190406-000002-e20190406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.566 + 0.001 37.495 180","-37.566 -180 37.495 -0.001"],"time_start":"2019-04-07T00:00:01.000Z","updated":"2022-05-24T00:06:45.455Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-07T23:59:59.000Z","id":"G2276682882-POCLOUD","original_format":"UMM_JSON","granule_size":"16.55897331237793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190407-000001-e20190407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.712 + 0.001 37.54 180","-37.712 -180 37.54 0"],"time_start":"2019-04-08T00:00:02.000Z","updated":"2022-05-24T00:30:31.854Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-08T23:59:59.000Z","id":"G2276687927-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190408-000002-e20190408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.621 + 0.002 37.532 180","-37.621 -180 37.532 -0.002"],"time_start":"2019-04-09T00:00:02.000Z","updated":"2022-05-24T00:09:33.148Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-09T23:59:59.000Z","id":"G2276683687-POCLOUD","original_format":"UMM_JSON","granule_size":"17.532736778259277","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190409-000002-e20190409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.698 + 0.001 37.46 180","-37.698 -180 37.46 0"],"time_start":"2019-04-10T00:00:02.000Z","updated":"2022-05-23T23:57:33.118Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-10T23:59:59.000Z","id":"G2276680580-POCLOUD","original_format":"UMM_JSON","granule_size":"18.28313446044922","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190410-000002-e20190410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.572 + 0 37.46 180","-37.572 -180 37.46 -0.001"],"time_start":"2019-04-11T00:00:02.000Z","updated":"2022-05-24T00:20:29.053Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-11T23:59:59.000Z","id":"G2276685806-POCLOUD","original_format":"UMM_JSON","granule_size":"18.11223602294922","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190411-000002-e20190411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.589 + 0.001 37.534 180","-37.589 -180 37.534 0"],"time_start":"2019-04-12T00:00:01.000Z","updated":"2022-05-23T23:53:29.861Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-12T23:59:59.000Z","id":"G2276680316-POCLOUD","original_format":"UMM_JSON","granule_size":"18.044769287109375","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190412-000001-e20190412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.512 + 0.004 37.532 180","-37.512 -180 37.532 -0.001"],"time_start":"2019-04-13T00:00:01.000Z","updated":"2022-05-24T00:22:28.947Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-13T23:59:59.000Z","id":"G2276686359-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190413-000001-e20190413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.567 + 0.002 37.555 180","-37.567 -180 37.555 -0.001"],"time_start":"2019-04-14T00:00:01.000Z","updated":"2022-05-24T00:33:33.271Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-14T23:59:59.000Z","id":"G2276688639-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190414-000001-e20190414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.559 + 0.002 37.502 180","-37.559 -180 37.502 -0.001"],"time_start":"2019-04-15T00:00:02.000Z","updated":"2022-05-24T00:31:29.489Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-15T23:59:58.000Z","id":"G2276688015-POCLOUD","original_format":"UMM_JSON","granule_size":"17.98695659637451","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190415-000002-e20190415-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.392 + 0.002 37.345 180","-37.392 -180 37.345 -0.001"],"time_start":"2019-04-16T00:00:01.000Z","updated":"2022-05-24T00:05:28.732Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-16T23:59:59.000Z","id":"G2276682612-POCLOUD","original_format":"UMM_JSON","granule_size":"17.74586582183838","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190416-000001-e20190416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.606 + 0.001 37.356 180","-37.606 -180 37.356 0"],"time_start":"2019-04-17T00:00:02.000Z","updated":"2022-05-24T00:12:29.817Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-17T23:59:59.000Z","id":"G2276683933-POCLOUD","original_format":"UMM_JSON","granule_size":"17.96454906463623","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190417-000002-e20190417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.567 + 0.001 37.635 180","-37.567 -180 37.635 0"],"time_start":"2019-04-18T00:00:02.000Z","updated":"2022-05-24T00:47:29.720Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-18T23:59:59.000Z","id":"G2276691704-POCLOUD","original_format":"UMM_JSON","granule_size":"17.791519165039062","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190418-000002-e20190418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.539 + 0.006 37.597 180","-37.539 -180 37.597 0"],"time_start":"2019-04-19T00:00:02.000Z","updated":"2022-05-24T00:33:32.929Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-19T23:59:59.000Z","id":"G2276688638-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190419-000002-e20190419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.605 + 0.001 37.649 180","-37.605 -180 37.649 0"],"time_start":"2019-04-20T00:00:00.000Z","updated":"2022-05-24T00:05:32.750Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-20T23:59:59.000Z","id":"G2276682637-POCLOUD","original_format":"UMM_JSON","granule_size":"17.69187831878662","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190420-000000-e20190420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.597 + 0.002 37.66 180","-37.597 -180 37.66 0"],"time_start":"2019-04-21T00:00:02.000Z","updated":"2022-05-24T00:23:35.911Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-21T23:59:59.000Z","id":"G2276686705-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190421-000002-e20190421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.607 + 0.002 37.705 180","-37.607 -180 37.705 0"],"time_start":"2019-04-22T00:00:00.000Z","updated":"2022-05-24T00:21:30.157Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-22T23:59:59.000Z","id":"G2276685910-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190422-000000-e20190422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.549 + 0.002 37.69 180","-37.549 -180 37.69 -0.001"],"time_start":"2019-04-23T00:00:02.000Z","updated":"2022-05-24T00:22:30.313Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-23T23:59:59.000Z","id":"G2276686409-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190423-000002-e20190423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.966 + 0.001 37.693 180","-37.966 -180 37.693 -0.003"],"time_start":"2019-04-24T00:00:02.000Z","updated":"2022-05-24T00:47:36.427Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-24T23:59:59.000Z","id":"G2276691771-POCLOUD","original_format":"UMM_JSON","granule_size":"17.417203903198242","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190424-000002-e20190424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.142 + 0 37.573 180","-39.142 -180 37.573 0"],"time_start":"2019-04-25T00:00:01.000Z","updated":"2022-05-24T00:36:27.494Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-25T23:59:59.000Z","id":"G2276688865-POCLOUD","original_format":"UMM_JSON","granule_size":"17.272340774536133","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190425-000001-e20190425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.883 + 0.003 37.63 180","-39.883 -180 37.63 -0.001"],"time_start":"2019-04-26T00:00:00.000Z","updated":"2022-05-24T00:26:40.584Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-26T23:59:59.000Z","id":"G2276687151-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190426-000000-e20190426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.194 + 0.001 37.704 180","-38.194 -180 37.704 -0.002"],"time_start":"2019-04-27T00:00:02.000Z","updated":"2022-05-23T23:52:26.547Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-27T23:59:59.000Z","id":"G2276680101-POCLOUD","original_format":"UMM_JSON","granule_size":"17.869269371032715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190427-000002-e20190427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0.004 37.774 180","-37.641 -180 37.774 0"],"time_start":"2019-04-28T00:00:00.000Z","updated":"2022-05-24T00:13:28.133Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-28T23:59:59.000Z","id":"G2276684577-POCLOUD","original_format":"UMM_JSON","granule_size":"17.997981071472168","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190428-000000-e20190428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0 37.758 180","-37.632 -180 37.758 -0.001"],"time_start":"2019-04-29T00:00:02.000Z","updated":"2022-05-24T00:32:48.266Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-29T23:59:59.000Z","id":"G2276688554-POCLOUD","original_format":"UMM_JSON","granule_size":"17.882091522216797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190429-000002-e20190429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.59 + 0 37.721 180","-37.59 -180 37.721 0"],"time_start":"2019-04-30T00:00:02.000Z","updated":"2022-05-24T00:00:37.747Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-04-30T23:59:59.000Z","id":"G2276681467-POCLOUD","original_format":"UMM_JSON","granule_size":"17.188440322875977","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190430-000002-e20190430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.61 + 0 37.677 180","-37.61 -180 37.677 -0.001"],"time_start":"2019-05-01T00:00:02.000Z","updated":"2022-05-24T00:47:34.294Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-01T23:59:59.000Z","id":"G2276691742-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190501-000002-e20190501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.617 + 0.001 37.62 180","-37.617 -180 37.62 0"],"time_start":"2019-05-02T00:00:02.000Z","updated":"2022-05-24T00:21:32.476Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-02T23:59:58.000Z","id":"G2276685913-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190502-000002-e20190502-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.574 + 0.005 37.649 180","-37.574 -180 37.649 -0.003"],"time_start":"2019-05-03T00:00:01.000Z","updated":"2022-05-23T23:54:25.814Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-03T23:59:59.000Z","id":"G2276680350-POCLOUD","original_format":"UMM_JSON","granule_size":"18.042705535888672","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190503-000001-e20190503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.615 + 0.001 37.586 180","-37.615 -180 37.586 0"],"time_start":"2019-05-04T00:00:02.000Z","updated":"2022-05-24T00:17:34.954Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-04T23:59:59.000Z","id":"G2276685270-POCLOUD","original_format":"UMM_JSON","granule_size":"17.96031093597412","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190504-000002-e20190504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.74 + 0 37.654 180","-37.74 -180 37.654 0"],"time_start":"2019-05-05T00:00:02.000Z","updated":"2022-05-23T23:57:29.335Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-05T23:59:58.000Z","id":"G2276680567-POCLOUD","original_format":"UMM_JSON","granule_size":"17.916075706481934","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190505-000002-e20190505-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.772 + 0 37.723 180","-37.772 -180 37.723 -0.001"],"time_start":"2019-05-06T00:00:02.000Z","updated":"2022-05-24T00:17:39.026Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-06T23:59:59.000Z","id":"G2276685278-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190506-000002-e20190506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.845 + 0 37.78 180","-37.845 -180 37.78 0"],"time_start":"2019-05-07T00:00:02.000Z","updated":"2022-05-23T23:59:28.929Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-07T23:59:58.000Z","id":"G2276681326-POCLOUD","original_format":"UMM_JSON","granule_size":"17.991660118103027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190507-000002-e20190507-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.877 + 0.003 37.742 180","-37.877 -180 37.742 -0.001"],"time_start":"2019-05-08T00:00:01.000Z","updated":"2022-05-24T00:02:28.706Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-08T23:59:59.000Z","id":"G2276681609-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190508-000001-e20190508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.809 + 0.002 37.646 180","-37.809 -180 37.646 0"],"time_start":"2019-05-09T00:00:02.000Z","updated":"2022-05-24T00:11:36.857Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-09T23:59:59.000Z","id":"G2276683839-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190509-000002-e20190509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.822 + 0.001 37.679 180","-37.822 -180 37.679 -0.002"],"time_start":"2019-05-10T00:00:00.000Z","updated":"2022-05-24T00:05:34.879Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-10T23:59:59.000Z","id":"G2276682639-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190510-000000-e20190510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.771 + 0 37.678 180","-37.771 -180 37.678 0"],"time_start":"2019-05-11T00:00:01.000Z","updated":"2022-05-24T00:20:30.457Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-11T23:59:59.000Z","id":"G2276685809-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190511-000001-e20190511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0.001 37.671 180","-37.777 -180 37.671 -0.003"],"time_start":"2019-05-12T00:00:01.000Z","updated":"2022-05-24T00:01:31.286Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-12T23:59:59.000Z","id":"G2276681540-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190512-000001-e20190512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.722 + 0 37.591 180","-37.722 -180 37.591 -0.002"],"time_start":"2019-05-13T00:00:00.000Z","updated":"2022-05-24T00:47:28.672Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-13T23:59:59.000Z","id":"G2276691638-POCLOUD","original_format":"UMM_JSON","granule_size":"18.40534019470215","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190513-000000-e20190513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.77 + 0 37.606 180","-37.77 -180 37.606 0"],"time_start":"2019-05-14T00:00:02.000Z","updated":"2022-05-24T00:24:39.352Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-14T23:59:59.000Z","id":"G2276686884-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190514-000002-e20190514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.751 + 0.002 37.689 180","-37.751 -180 37.689 -0.001"],"time_start":"2019-05-15T00:00:01.000Z","updated":"2022-05-23T23:47:28.082Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-15T23:59:59.000Z","id":"G2276677545-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190515-000001-e20190515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.79 + 0 37.744 180","-37.79 -180 37.744 0"],"time_start":"2019-05-16T00:00:00.000Z","updated":"2022-05-24T00:43:30.778Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-16T23:59:59.000Z","id":"G2276690094-POCLOUD","original_format":"UMM_JSON","granule_size":"18.093043327331543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190516-000000-e20190516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.759 + 0.003 37.762 180","-37.759 -180 37.762 -0.001"],"time_start":"2019-05-17T00:00:01.000Z","updated":"2022-05-24T00:08:38.282Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-17T23:59:59.000Z","id":"G2276683621-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190517-000001-e20190517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.868 + 0.003 37.616 180","-37.868 -180 37.616 -0.001"],"time_start":"2019-05-18T00:00:02.000Z","updated":"2022-05-24T00:07:31.648Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-18T23:59:59.000Z","id":"G2276683473-POCLOUD","original_format":"UMM_JSON","granule_size":"17.800689697265625","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190518-000002-e20190518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.776 + 0 37.663 180","-37.776 -180 37.663 -0.001"],"time_start":"2019-05-19T00:00:02.000Z","updated":"2022-05-24T00:38:37.866Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-19T23:59:59.000Z","id":"G2276689512-POCLOUD","original_format":"UMM_JSON","granule_size":"18.16417407989502","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190519-000002-e20190519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.768 + 0 37.674 180","-37.768 -180 37.674 -0.003"],"time_start":"2019-05-20T00:00:01.000Z","updated":"2022-05-24T00:15:43.620Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-20T23:59:59.000Z","id":"G2276685015-POCLOUD","original_format":"UMM_JSON","granule_size":"18.06862735748291","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190520-000001-e20190520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.847 + 0 37.808 180","-37.847 -180 37.808 0"],"time_start":"2019-05-21T00:00:02.000Z","updated":"2022-05-24T00:03:29.222Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-21T23:59:59.000Z","id":"G2276682032-POCLOUD","original_format":"UMM_JSON","granule_size":"18.193350791931152","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190521-000002-e20190521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.816 + 0 37.789 180","-37.816 -180 37.789 -0.001"],"time_start":"2019-05-22T00:00:02.000Z","updated":"2022-05-24T00:34:48.054Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-22T23:59:59.000Z","id":"G2276688754-POCLOUD","original_format":"UMM_JSON","granule_size":"18.187824249267578","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190522-000002-e20190522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0 37.743 180","-37.824 -180 37.743 -0.004"],"time_start":"2019-05-23T00:00:02.000Z","updated":"2022-05-24T00:10:31.559Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-23T23:59:59.000Z","id":"G2276683747-POCLOUD","original_format":"UMM_JSON","granule_size":"18.49244499206543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190523-000002-e20190523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.805 + 0.001 37.742 180","-37.805 -180 37.742 -0.006"],"time_start":"2019-05-24T00:00:01.000Z","updated":"2022-05-24T00:10:30.071Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-24T23:59:59.000Z","id":"G2276683745-POCLOUD","original_format":"UMM_JSON","granule_size":"18.280491828918457","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190524-000001-e20190524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.746 + 0.001 37.682 180","-37.746 -180 37.682 -0.001"],"time_start":"2019-05-25T00:00:01.000Z","updated":"2022-05-24T00:32:31.589Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-25T23:59:59.000Z","id":"G2276688092-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190525-000001-e20190525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.584 + 0 37.529 180","-37.584 -180 37.529 -0.001"],"time_start":"2019-05-26T00:00:00.000Z","updated":"2022-05-24T00:21:41.622Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-26T23:59:59.000Z","id":"G2276685946-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190526-000000-e20190526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.549 + 0.001 37.559 180","-37.549 -180 37.559 -0.003"],"time_start":"2019-05-27T00:00:00.000Z","updated":"2022-05-24T00:10:28.714Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-27T23:59:59.000Z","id":"G2276683742-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190527-000000-e20190527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.622 + 0 37.688 180","-37.622 -180 37.688 -0.002"],"time_start":"2019-05-28T00:00:02.000Z","updated":"2022-05-24T00:10:45.538Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-28T23:59:59.000Z","id":"G2276683784-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190528-000002-e20190528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.681 + 0.001 37.754 180","-37.681 -180 37.754 -0.003"],"time_start":"2019-05-29T00:00:01.000Z","updated":"2022-05-24T00:16:32.690Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-29T23:59:59.000Z","id":"G2276685065-POCLOUD","original_format":"UMM_JSON","granule_size":"19.099587440490723","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190529-000001-e20190529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.758 + 0.002 37.796 180","-37.758 -180 37.796 -0.001"],"time_start":"2019-05-30T00:00:02.000Z","updated":"2022-05-24T00:23:30.892Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-30T23:59:59.000Z","id":"G2276686672-POCLOUD","original_format":"UMM_JSON","granule_size":"19.20024299621582","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190530-000002-e20190530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0 37.806 180","-37.777 -180 37.806 -0.001"],"time_start":"2019-05-31T00:00:01.000Z","updated":"2022-05-24T00:18:28.660Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-05-31T23:59:59.000Z","id":"G2276685617-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190531-000001-e20190531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.753 + 0 37.804 180","-37.753 -180 37.804 -0.001"],"time_start":"2019-06-01T00:00:02.000Z","updated":"2022-05-24T00:16:29.755Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-01T23:59:59.000Z","id":"G2276685048-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190601-000002-e20190601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.748 + 0 37.789 180","-37.748 -180 37.789 -0.001"],"time_start":"2019-06-02T00:00:00.000Z","updated":"2022-05-23T23:58:32.120Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-02T23:59:59.000Z","id":"G2276681290-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190602-000000-e20190602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.686 + 0.003 37.75 180","-37.686 -180 37.75 -0.002"],"time_start":"2019-06-03T00:00:02.000Z","updated":"2022-05-24T00:30:34.744Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-03T23:59:59.000Z","id":"G2276687941-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190603-000002-e20190603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.501 + 0 37.693 180","-37.501 -180 37.693 -0.001"],"time_start":"2019-06-04T00:00:02.000Z","updated":"2022-05-24T00:23:40.691Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-04T23:59:59.000Z","id":"G2276686725-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190604-000002-e20190604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.478 + 0.002 37.642 180","-37.478 -180 37.642 0"],"time_start":"2019-06-05T00:00:00.000Z","updated":"2022-05-23T23:48:06.359Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-05T23:59:59.000Z","id":"G2276678507-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190605-000000-e20190605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.563 + 0 37.714 180","-37.563 -180 37.714 0"],"time_start":"2019-06-06T00:00:02.000Z","updated":"2022-05-24T00:01:27.387Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-06T23:59:59.000Z","id":"G2276681519-POCLOUD","original_format":"UMM_JSON","granule_size":"17.320587158203125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190606-000002-e20190606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.545 + 0.001 37.581 180","-37.545 -180 37.581 -0.001"],"time_start":"2019-06-07T00:00:02.000Z","updated":"2022-05-24T00:29:31.194Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-07T23:59:58.000Z","id":"G2276687836-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190607-000002-e20190607-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.491 + 0.001 37.591 180","-37.491 -180 37.591 0"],"time_start":"2019-06-08T00:00:02.000Z","updated":"2022-05-23T23:50:39.757Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-08T23:59:58.000Z","id":"G2276679803-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190608-000002-e20190608-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.537 + 0.001 37.575 180","-37.537 -180 37.575 -0.001"],"time_start":"2019-06-09T00:00:01.000Z","updated":"2022-05-23T23:48:31.654Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-09T23:59:59.000Z","id":"G2276678990-POCLOUD","original_format":"UMM_JSON","granule_size":"17.766700744628906","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190609-000001-e20190609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.548 + 0.005 37.571 180","-37.548 -180 37.571 -0.002"],"time_start":"2019-06-10T00:00:02.000Z","updated":"2022-05-23T23:53:32.982Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-10T23:59:59.000Z","id":"G2276680321-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190610-000002-e20190610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.547 + 0 37.488 180","-37.547 -180 37.488 -0.002"],"time_start":"2019-06-11T00:00:02.000Z","updated":"2022-05-24T00:29:37.949Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-11T23:59:59.000Z","id":"G2276687854-POCLOUD","original_format":"UMM_JSON","granule_size":"17.582504272460938","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190611-000002-e20190611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.043 + 0.001 37.574 180","-38.043 -180 37.574 -0.002"],"time_start":"2019-06-12T00:00:01.000Z","updated":"2022-05-23T23:49:33.501Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-12T23:59:59.000Z","id":"G2276679623-POCLOUD","original_format":"UMM_JSON","granule_size":"16.562447547912598","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190612-000001-e20190612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.422 + 0.006 37.382 180","-38.422 -180 37.382 -0.001"],"time_start":"2019-06-13T00:00:01.000Z","updated":"2022-05-24T00:23:31.767Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-13T23:59:59.000Z","id":"G2276686675-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190613-000001-e20190613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.597 + 0.002 37.283 180","-37.597 -180 37.283 -0.001"],"time_start":"2019-06-14T00:00:02.000Z","updated":"2022-05-24T00:26:32.968Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-14T23:59:59.000Z","id":"G2276687102-POCLOUD","original_format":"UMM_JSON","granule_size":"16.308561325073242","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190614-000002-e20190614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.25 + 0.001 37.362 180","-38.25 -180 37.362 -0.005"],"time_start":"2019-06-15T00:00:02.000Z","updated":"2022-05-23T23:55:30.256Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-15T23:59:59.000Z","id":"G2276680427-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190615-000002-e20190615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.408 + 0.003 37.479 180","-39.408 -180 37.479 -0.004"],"time_start":"2019-06-16T00:00:01.000Z","updated":"2022-05-23T23:55:27.510Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-16T23:59:59.000Z","id":"G2276680422-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190616-000001-e20190616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.655 + 0.002 37.523 180","-37.655 -180 37.523 -0.003"],"time_start":"2019-06-17T00:00:00.000Z","updated":"2022-05-24T00:34:35.300Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-17T23:59:59.000Z","id":"G2276688731-POCLOUD","original_format":"UMM_JSON","granule_size":"16.560431480407715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190617-000000-e20190617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.679 + 0 37.499 180","-38.679 -180 37.499 0"],"time_start":"2019-06-18T00:00:01.000Z","updated":"2022-05-24T00:35:25.944Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-18T23:59:59.000Z","id":"G2276688776-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190618-000001-e20190618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.227 + 0.002 37.436 180","-39.227 -180 37.436 -0.001"],"time_start":"2019-06-19T00:00:02.000Z","updated":"2022-05-23T23:59:26.518Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-19T23:59:59.000Z","id":"G2276681321-POCLOUD","original_format":"UMM_JSON","granule_size":"16.455320358276367","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190619-000002-e20190619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.596 + 0 37.371 180","-37.596 -180 37.371 -0.002"],"time_start":"2019-06-20T00:00:02.000Z","updated":"2022-05-24T00:49:29.820Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-20T14:59:59.000Z","id":"G2276692637-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190620-000002-e20190620-145959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.516 + 0.001 37.484 180","-37.516 -180 37.484 -0.001"],"time_start":"2019-06-21T10:15:02.000Z","updated":"2022-05-24T00:20:23.891Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-21T23:59:59.000Z","id":"G2276685800-POCLOUD","original_format":"UMM_JSON","granule_size":"8.479723930358887","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190621-101502-e20190621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.572 + 0 37.415 180","-37.572 -180 37.415 -0.001"],"time_start":"2019-06-22T00:00:02.000Z","updated":"2022-05-24T00:45:32.180Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-22T23:59:59.000Z","id":"G2276690257-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190622-000002-e20190622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.441 + 0.001 37.571 180","-38.441 -180 37.571 -0.001"],"time_start":"2019-06-23T00:00:00.000Z","updated":"2022-05-24T00:19:30.546Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-23T23:59:59.000Z","id":"G2276685728-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190623-000000-e20190623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.61 + 0.002 37.623 180","-37.61 -180 37.623 -0.004"],"time_start":"2019-06-24T00:00:02.000Z","updated":"2022-05-24T00:13:27.097Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-24T23:59:59.000Z","id":"G2276684588-POCLOUD","original_format":"UMM_JSON","granule_size":"18.74061870574951","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190624-000002-e20190624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0.003 37.687 180","-37.695 -180 37.687 -0.002"],"time_start":"2019-06-25T00:00:01.000Z","updated":"2022-05-24T00:10:39.986Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-25T23:59:59.000Z","id":"G2276683778-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190625-000001-e20190625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.779 + 0 37.554 180","-37.779 -180 37.554 -0.002"],"time_start":"2019-06-26T00:00:02.000Z","updated":"2022-05-24T00:16:33.339Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-26T23:59:59.000Z","id":"G2276685066-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190626-000002-e20190626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.683 + 0.001 37.563 180","-37.683 -180 37.563 -0.001"],"time_start":"2019-06-27T00:00:01.000Z","updated":"2022-05-24T00:47:30.794Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-27T23:59:59.000Z","id":"G2276691712-POCLOUD","original_format":"UMM_JSON","granule_size":"19.453316688537598","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190627-000001-e20190627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.698 + 0.001 37.569 180","-37.698 -180 37.569 0"],"time_start":"2019-06-28T00:00:02.000Z","updated":"2022-05-24T00:15:31.203Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-28T23:59:59.000Z","id":"G2276684981-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190628-000002-e20190628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.733 + 0 37.584 180","-37.733 -180 37.584 -0.001"],"time_start":"2019-06-29T00:00:02.000Z","updated":"2022-05-24T00:06:33.388Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-29T23:59:59.000Z","id":"G2276682841-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190629-000002-e20190629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.661 + 0 37.586 180","-37.661 -180 37.586 -0.001"],"time_start":"2019-06-30T00:00:02.000Z","updated":"2022-05-23T23:57:30.112Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-06-30T23:59:59.000Z","id":"G2276680573-POCLOUD","original_format":"UMM_JSON","granule_size":"19.10046672821045","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190630-000002-e20190630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.601 + 0 37.572 180","-37.601 -180 37.572 -0.007"],"time_start":"2019-07-01T00:00:02.000Z","updated":"2022-05-24T00:20:33.444Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-01T23:59:59.000Z","id":"G2276685817-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190701-000002-e20190701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.684 + 0.004 37.718 180","-37.684 -180 37.718 -0.002"],"time_start":"2019-07-02T00:00:02.000Z","updated":"2022-05-24T00:44:25.217Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-02T23:59:59.000Z","id":"G2276690172-POCLOUD","original_format":"UMM_JSON","granule_size":"17.89320659637451","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190702-000002-e20190702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.825 + 0.001 37.72 180","-37.825 -180 37.72 0"],"time_start":"2019-07-03T00:00:02.000Z","updated":"2022-05-24T00:32:32.342Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-03T23:59:59.000Z","id":"G2276688095-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190703-000002-e20190703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.833 + 0.003 37.779 180","-37.833 -180 37.779 -0.002"],"time_start":"2019-07-04T00:00:01.000Z","updated":"2022-05-24T00:18:36.119Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-04T23:59:59.000Z","id":"G2276685640-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190704-000001-e20190704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.829 + 0.003 37.787 180","-37.829 -180 37.787 0"],"time_start":"2019-07-05T00:00:01.000Z","updated":"2022-05-24T00:39:39.054Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-05T23:59:59.000Z","id":"G2276689571-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190705-000001-e20190705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.812 + 0.003 37.771 180","-37.812 -180 37.771 -0.001"],"time_start":"2019-07-06T00:00:01.000Z","updated":"2022-05-24T00:43:34.052Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-06T23:59:59.000Z","id":"G2276690099-POCLOUD","original_format":"UMM_JSON","granule_size":"20.668644905090332","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190706-000001-e20190706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0 37.759 180","-37.741 -180 37.759 -0.001"],"time_start":"2019-07-07T00:00:01.000Z","updated":"2022-05-24T00:02:29.086Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-07T23:59:59.000Z","id":"G2276681607-POCLOUD","original_format":"UMM_JSON","granule_size":"20.789255142211914","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190707-000001-e20190707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.723 + 0 37.729 180","-37.723 -180 37.729 -0.003"],"time_start":"2019-07-08T00:00:01.000Z","updated":"2022-05-24T00:46:29.613Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-08T23:59:59.000Z","id":"G2276690878-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190708-000001-e20190708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.694 + 0.002 37.749 180","-37.694 -180 37.749 -0.001"],"time_start":"2019-07-09T00:00:01.000Z","updated":"2022-05-24T00:37:37.820Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-09T23:59:59.000Z","id":"G2276688941-POCLOUD","original_format":"UMM_JSON","granule_size":"20.658413887023926","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190709-000001-e20190709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.683 + 0.001 37.777 180","-37.683 -180 37.777 0"],"time_start":"2019-07-10T00:00:01.000Z","updated":"2022-05-24T00:30:31.070Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-10T23:59:59.000Z","id":"G2276687925-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190710-000001-e20190710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.663 + 0 37.738 180","-37.663 -180 37.738 -0.003"],"time_start":"2019-07-11T00:00:01.000Z","updated":"2022-05-24T00:41:40.474Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-11T23:59:59.000Z","id":"G2276689697-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190711-000001-e20190711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0 37.777 180","-37.65 -180 37.777 0"],"time_start":"2019-07-12T00:00:01.000Z","updated":"2022-05-24T00:23:32.316Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-12T23:59:59.000Z","id":"G2276686680-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190712-000001-e20190712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0 37.815 180","-37.75 -180 37.815 -0.001"],"time_start":"2019-07-13T00:00:01.000Z","updated":"2022-05-24T00:13:34.063Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-13T23:59:59.000Z","id":"G2276684599-POCLOUD","original_format":"UMM_JSON","granule_size":"20.188050270080566","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190713-000001-e20190713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.768 + 0.001 37.801 180","-37.768 -180 37.801 -0.002"],"time_start":"2019-07-14T00:00:01.000Z","updated":"2022-05-24T00:19:40.559Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-14T23:59:59.000Z","id":"G2276685769-POCLOUD","original_format":"UMM_JSON","granule_size":"20.343868255615234","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190714-000001-e20190714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0.006 37.772 180","-37.741 -180 37.772 -0.001"],"time_start":"2019-07-15T00:00:01.000Z","updated":"2022-05-24T00:14:38.152Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-15T23:59:59.000Z","id":"G2276684758-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190715-000001-e20190715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0.007 37.789 180","-37.65 -180 37.789 -0.001"],"time_start":"2019-07-16T00:00:00.000Z","updated":"2022-05-24T00:26:28.601Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-16T23:59:59.000Z","id":"G2276687090-POCLOUD","original_format":"UMM_JSON","granule_size":"17.286961555480957","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190716-000000-e20190716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.742 + 0.003 37.639 180","-37.742 -180 37.639 -0.004"],"time_start":"2019-07-17T00:00:01.000Z","updated":"2022-05-24T00:43:26.983Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-17T23:59:59.000Z","id":"G2276690088-POCLOUD","original_format":"UMM_JSON","granule_size":"16.64639186859131","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190717-000001-e20190717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.738 + 0.007 37.659 180","-37.738 -180 37.659 0"],"time_start":"2019-07-18T00:00:02.000Z","updated":"2022-05-24T00:37:34.687Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-18T23:59:59.000Z","id":"G2276688933-POCLOUD","original_format":"UMM_JSON","granule_size":"17.228443145751953","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190718-000002-e20190718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.785 + 0.006 37.851 180","-37.785 -180 37.851 -0.005"],"time_start":"2019-07-19T00:00:02.000Z","updated":"2022-05-24T00:39:36.340Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-19T23:59:59.000Z","id":"G2276689566-POCLOUD","original_format":"UMM_JSON","granule_size":"15.82585334777832","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190719-000002-e20190719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.774 + 0 37.767 180","-37.774 -180 37.767 -0.003"],"time_start":"2019-07-20T00:00:02.000Z","updated":"2022-05-24T00:18:33.446Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-20T23:59:59.000Z","id":"G2276685628-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190720-000002-e20190720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.76 + 0.002 37.788 180","-37.76 -180 37.788 -0.001"],"time_start":"2019-07-21T00:00:01.000Z","updated":"2022-05-24T00:45:08.399Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-21T23:59:59.000Z","id":"G2276690234-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190721-000001-e20190721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.729 + 0 37.743 180","-37.729 -180 37.743 0"],"time_start":"2019-07-22T00:00:01.000Z","updated":"2022-05-23T23:56:31.162Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-22T23:59:59.000Z","id":"G2276680504-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190722-000001-e20190722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.693 + 0 37.617 180","-37.693 -180 37.617 0"],"time_start":"2019-07-23T00:00:01.000Z","updated":"2022-05-23T23:59:35.396Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-23T23:59:59.000Z","id":"G2276681350-POCLOUD","original_format":"UMM_JSON","granule_size":"17.283822059631348","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190723-000001-e20190723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0 37.597 180","-37.595 -180 37.597 -0.001"],"time_start":"2019-07-24T00:00:01.000Z","updated":"2022-05-24T00:01:40.560Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-24T23:59:59.000Z","id":"G2276681558-POCLOUD","original_format":"UMM_JSON","granule_size":"16.7617130279541","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190724-000001-e20190724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.693 + 0 37.586 180","-37.693 -180 37.586 0"],"time_start":"2019-07-25T00:00:01.000Z","updated":"2022-05-24T00:10:32.006Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-25T23:59:58.000Z","id":"G2276683759-POCLOUD","original_format":"UMM_JSON","granule_size":"18.3790864944458","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190725-000001-e20190725-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.723 + 0.001 37.777 180","-37.723 -180 37.777 -0.002"],"time_start":"2019-07-26T00:00:01.000Z","updated":"2022-05-24T00:20:34.044Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-26T23:59:59.000Z","id":"G2276685819-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190726-000001-e20190726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.796 + 0 37.696 180","-37.796 -180 37.696 -0.001"],"time_start":"2019-07-27T00:00:02.000Z","updated":"2022-05-24T00:40:37.619Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-27T23:59:59.000Z","id":"G2276689626-POCLOUD","original_format":"UMM_JSON","granule_size":"18.71542263031006","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190727-000002-e20190727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0.001 37.773 180","-37.824 -180 37.773 -0.001"],"time_start":"2019-07-28T00:00:01.000Z","updated":"2022-05-24T00:24:38.310Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-28T23:59:58.000Z","id":"G2276686878-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190728-000001-e20190728-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.821 + 0.005 37.781 180","-37.821 -180 37.781 -0.002"],"time_start":"2019-07-29T00:00:01.000Z","updated":"2022-05-24T00:07:29.061Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-29T23:59:59.000Z","id":"G2276683231-POCLOUD","original_format":"UMM_JSON","granule_size":"16.69753360748291","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190729-000001-e20190729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.773 + 0.004 37.738 180","-37.773 -180 37.738 -0.004"],"time_start":"2019-07-30T00:00:00.000Z","updated":"2022-05-24T00:00:37.025Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-30T23:59:59.000Z","id":"G2276681464-POCLOUD","original_format":"UMM_JSON","granule_size":"16.798548698425293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190730-000000-e20190730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.674 + 0.001 37.666 180","-38.674 -180 37.666 -0.001"],"time_start":"2019-07-31T00:00:01.000Z","updated":"2022-05-24T00:00:32.202Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-07-31T23:59:59.000Z","id":"G2276681452-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190731-000001-e20190731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.873 + 0.006 37.593 180","-39.873 -180 37.593 -0.001"],"time_start":"2019-08-01T00:00:02.000Z","updated":"2022-05-23T23:48:06.349Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-01T23:59:59.000Z","id":"G2276678506-POCLOUD","original_format":"UMM_JSON","granule_size":"17.276744842529297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190801-000002-e20190801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.912 + 0 37.541 180","-38.912 -180 37.541 0"],"time_start":"2019-08-02T00:00:00.000Z","updated":"2022-05-24T00:42:30.378Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-02T23:59:59.000Z","id":"G2276689967-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190802-000000-e20190802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.182 + 0.001 37.529 180","-38.182 -180 37.529 -0.002"],"time_start":"2019-08-03T00:00:01.000Z","updated":"2022-05-24T00:03:35.057Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-03T23:59:59.000Z","id":"G2276682044-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190803-000001-e20190803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.307 + 0.001 37.493 180","-39.307 -180 37.493 -0.005"],"time_start":"2019-08-04T00:00:00.000Z","updated":"2022-05-24T00:13:32.197Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-04T23:59:59.000Z","id":"G2276684614-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190804-000000-e20190804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.666 + 0.002 37.401 180","-38.666 -180 37.401 -0.003"],"time_start":"2019-08-05T00:00:01.000Z","updated":"2022-05-23T23:48:04.738Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-05T23:59:59.000Z","id":"G2276678489-POCLOUD","original_format":"UMM_JSON","granule_size":"18.116570472717285","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190805-000001-e20190805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.624 + 0.003 37.419 180","-37.624 -180 37.419 -0.003"],"time_start":"2019-08-06T00:00:02.000Z","updated":"2022-05-24T00:22:29.527Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-06T23:59:59.000Z","id":"G2276686386-POCLOUD","original_format":"UMM_JSON","granule_size":"18.997047424316406","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190806-000002-e20190806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0 37.51 180","-37.641 -180 37.51 -0.001"],"time_start":"2019-08-07T00:00:02.000Z","updated":"2022-05-24T00:40:41.391Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-07T23:59:59.000Z","id":"G2276689636-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190807-000002-e20190807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.61 + 0.001 37.514 180","-37.61 -180 37.514 -0.001"],"time_start":"2019-08-08T00:00:01.000Z","updated":"2022-05-24T00:27:29.254Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-08T23:59:59.000Z","id":"G2276687206-POCLOUD","original_format":"UMM_JSON","granule_size":"19.396865844726562","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190808-000001-e20190808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.732 + 0 37.472 180","-37.732 -180 37.472 -0.001"],"time_start":"2019-08-09T00:00:01.000Z","updated":"2022-05-24T00:00:34.278Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-09T23:59:59.000Z","id":"G2276681460-POCLOUD","original_format":"UMM_JSON","granule_size":"19.90542507171631","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190809-000001-e20190809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.547 + 0.002 37.374 180","-37.547 -180 37.374 -0.002"],"time_start":"2019-08-10T00:00:01.000Z","updated":"2022-05-24T00:31:36.440Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-10T23:59:59.000Z","id":"G2276688034-POCLOUD","original_format":"UMM_JSON","granule_size":"19.7814998626709","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190810-000001-e20190810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.531 + 0.001 37.352 180","-37.531 -180 37.352 -0.001"],"time_start":"2019-08-11T00:00:02.000Z","updated":"2022-05-24T00:45:32.481Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-11T23:59:59.000Z","id":"G2276690258-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190811-000002-e20190811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.604 + 0 37.576 180","-37.604 -180 37.576 -0.002"],"time_start":"2019-08-12T00:00:01.000Z","updated":"2022-05-24T00:04:30.079Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-12T23:59:59.000Z","id":"G2276682447-POCLOUD","original_format":"UMM_JSON","granule_size":"20.376469612121582","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190812-000001-e20190812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.578 + 0.004 37.606 180","-37.578 -180 37.606 0"],"time_start":"2019-08-13T00:00:01.000Z","updated":"2022-05-24T00:49:39.226Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-13T23:59:59.000Z","id":"G2276692793-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190813-000001-e20190813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0.007 37.601 180","-37.565 -180 37.601 -0.001"],"time_start":"2019-08-14T00:00:01.000Z","updated":"2022-05-24T00:45:35.881Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-14T23:59:59.000Z","id":"G2276690278-POCLOUD","original_format":"UMM_JSON","granule_size":"20.43245506286621","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190814-000001-e20190814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.645 + 0 37.621 180","-37.645 -180 37.621 -0.004"],"time_start":"2019-08-15T00:00:02.000Z","updated":"2022-05-24T00:25:33.023Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-15T23:59:59.000Z","id":"G2276686992-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190815-000002-e20190815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.526 + 0.001 37.609 180","-37.526 -180 37.609 0"],"time_start":"2019-08-16T00:00:01.000Z","updated":"2022-05-23T23:48:38.580Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-16T23:59:59.000Z","id":"G2276679037-POCLOUD","original_format":"UMM_JSON","granule_size":"20.433250427246094","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190816-000001-e20190816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.563 + 0.001 37.598 180","-37.563 -180 37.598 -0.001"],"time_start":"2019-08-17T00:00:01.000Z","updated":"2022-05-24T00:05:13.574Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-17T23:59:59.000Z","id":"G2276682586-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190817-000001-e20190817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.519 + 0.003 37.572 180","-37.519 -180 37.572 -0.002"],"time_start":"2019-08-18T00:00:02.000Z","updated":"2022-05-23T23:57:29.938Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-18T23:59:59.000Z","id":"G2276680570-POCLOUD","original_format":"UMM_JSON","granule_size":"20.78311824798584","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190818-000002-e20190818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.485 + 0 37.525 180","-37.485 -180 37.525 -0.002"],"time_start":"2019-08-19T00:00:01.000Z","updated":"2022-05-24T00:27:38.897Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-19T23:59:59.000Z","id":"G2276687470-POCLOUD","original_format":"UMM_JSON","granule_size":"20.02451992034912","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190819-000001-e20190819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.435 + 0 37.625 180","-37.435 -180 37.625 -0.001"],"time_start":"2019-08-20T00:00:02.000Z","updated":"2022-05-24T00:11:31.987Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-20T23:59:59.000Z","id":"G2276683832-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190820-000002-e20190820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.573 + 0 37.641 180","-37.573 -180 37.641 -0.002"],"time_start":"2019-08-21T00:00:01.000Z","updated":"2022-05-24T00:31:44.308Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-21T23:59:59.000Z","id":"G2276688056-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190821-000001-e20190821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.579 + 0 37.756 180","-37.579 -180 37.756 -0.003"],"time_start":"2019-08-22T00:00:02.000Z","updated":"2022-05-24T00:32:40.657Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-22T23:59:59.000Z","id":"G2276688436-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190822-000002-e20190822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.673 + 0 37.777 180","-37.673 -180 37.777 -0.002"],"time_start":"2019-08-23T00:00:01.000Z","updated":"2022-05-24T00:35:27.515Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-23T23:59:59.000Z","id":"G2276688781-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190823-000001-e20190823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.615 + 0.001 37.804 180","-37.615 -180 37.804 -0.002"],"time_start":"2019-08-24T00:00:02.000Z","updated":"2022-05-24T00:06:37.979Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-24T23:59:59.000Z","id":"G2276682867-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190824-000002-e20190824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.572 + 0 37.667 180","-37.572 -180 37.667 0"],"time_start":"2019-08-25T00:00:00.000Z","updated":"2022-05-24T00:42:35.849Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-25T23:59:59.000Z","id":"G2276690003-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190825-000000-e20190825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.604 + 0.001 37.651 180","-37.604 -180 37.651 -0.002"],"time_start":"2019-08-26T00:00:01.000Z","updated":"2022-05-24T00:24:42.991Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-26T23:59:59.000Z","id":"G2276686911-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190826-000001-e20190826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.612 + 0 37.676 180","-37.612 -180 37.676 0"],"time_start":"2019-08-27T00:00:01.000Z","updated":"2022-05-23T23:56:43.271Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-27T23:59:59.000Z","id":"G2276680548-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190827-000001-e20190827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.556 + 0.002 37.66 180","-37.556 -180 37.66 -0.004"],"time_start":"2019-08-28T00:00:01.000Z","updated":"2022-05-24T00:04:32.008Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-28T23:59:59.000Z","id":"G2276682452-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190828-000001-e20190828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.712 + 0.001 37.609 180","-37.712 -180 37.609 0"],"time_start":"2019-08-29T00:00:02.000Z","updated":"2022-05-24T00:29:28.610Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-29T23:59:59.000Z","id":"G2276687814-POCLOUD","original_format":"UMM_JSON","granule_size":"19.483911514282227","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190829-000002-e20190829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.785 + 0 37.695 180","-37.785 -180 37.695 -0.001"],"time_start":"2019-08-30T00:00:01.000Z","updated":"2022-05-24T00:07:36.025Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-30T23:59:59.000Z","id":"G2276683502-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190830-000001-e20190830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.797 + 0 37.779 180","-37.797 -180 37.779 -0.001"],"time_start":"2019-08-31T00:00:01.000Z","updated":"2022-05-23T23:54:58.673Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-08-31T23:59:59.000Z","id":"G2276680388-POCLOUD","original_format":"UMM_JSON","granule_size":"20.306097984313965","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190831-000001-e20190831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.808 + 0.002 37.8 180","-37.808 -180 37.8 -0.004"],"time_start":"2019-09-01T00:00:01.000Z","updated":"2022-05-24T00:02:33.864Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-01T23:59:59.000Z","id":"G2276681623-POCLOUD","original_format":"UMM_JSON","granule_size":"20.605121612548828","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190901-000001-e20190901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.818 + 0.001 37.752 180","-37.818 -180 37.752 -0.001"],"time_start":"2019-09-02T00:00:02.000Z","updated":"2022-05-24T00:07:30.766Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-02T23:59:59.000Z","id":"G2276683474-POCLOUD","original_format":"UMM_JSON","granule_size":"20.64260482788086","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190902-000002-e20190902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.813 + 0 37.769 180","-37.813 -180 37.769 0"],"time_start":"2019-09-03T00:00:02.000Z","updated":"2022-05-24T00:08:35.567Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-03T23:59:59.000Z","id":"G2276683608-POCLOUD","original_format":"UMM_JSON","granule_size":"20.96151065826416","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190903-000002-e20190903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.725 + 0 37.677 180","-37.725 -180 37.677 0"],"time_start":"2019-09-04T00:00:01.000Z","updated":"2022-05-24T00:24:46.928Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-04T23:59:59.000Z","id":"G2276686929-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190904-000001-e20190904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.654 + 0.001 37.627 180","-37.654 -180 37.627 -0.004"],"time_start":"2019-09-05T00:00:01.000Z","updated":"2022-05-23T23:53:37.352Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-05T23:59:59.000Z","id":"G2276680332-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190905-000001-e20190905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.719 + 0 37.716 180","-37.719 -180 37.716 -0.001"],"time_start":"2019-09-06T00:00:01.000Z","updated":"2022-05-23T23:57:35.333Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-06T23:59:59.000Z","id":"G2276680641-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190906-000001-e20190906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.694 + 0 37.6 180","-37.694 -180 37.6 -0.002"],"time_start":"2019-09-07T00:00:01.000Z","updated":"2022-05-23T23:59:37.846Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-07T23:59:59.000Z","id":"G2276681358-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190907-000001-e20190907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.738 + 0 37.644 180","-37.738 -180 37.644 -0.001"],"time_start":"2019-09-08T00:00:00.000Z","updated":"2022-05-24T00:37:38.041Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-08T23:59:59.000Z","id":"G2276689226-POCLOUD","original_format":"UMM_JSON","granule_size":"16.922231674194336","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190908-000000-e20190908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.733 + 0.001 37.724 180","-37.733 -180 37.724 -0.001"],"time_start":"2019-09-09T00:00:00.000Z","updated":"2022-05-24T00:23:31.258Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-09T23:59:59.000Z","id":"G2276686676-POCLOUD","original_format":"UMM_JSON","granule_size":"16.85347843170166","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190909-000000-e20190909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.836 + 0.001 37.686 180","-37.836 -180 37.686 -0.001"],"time_start":"2019-09-10T00:00:01.000Z","updated":"2022-05-24T00:35:33.967Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-10T23:59:59.000Z","id":"G2276688797-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190910-000001-e20190910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.773 + 0.001 37.493 180","-37.773 -180 37.493 -0.001"],"time_start":"2019-09-11T00:00:01.000Z","updated":"2022-05-24T00:16:34.686Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-11T23:59:59.000Z","id":"G2276685076-POCLOUD","original_format":"UMM_JSON","granule_size":"20.2957181930542","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190911-000001-e20190911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.817 + 0 37.684 180","-37.817 -180 37.684 0"],"time_start":"2019-09-12T00:00:02.000Z","updated":"2022-05-24T00:06:30.582Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-12T23:59:59.000Z","id":"G2276682831-POCLOUD","original_format":"UMM_JSON","granule_size":"20.522459983825684","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190912-000002-e20190912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.841 + 0.001 37.67 180","-37.841 -180 37.67 -0.005"],"time_start":"2019-09-13T00:00:02.000Z","updated":"2022-05-24T00:27:39.604Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-13T23:59:59.000Z","id":"G2276687471-POCLOUD","original_format":"UMM_JSON","granule_size":"20.582508087158203","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190913-000002-e20190913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.866 + 0 37.589 180","-37.866 -180 37.589 -0.002"],"time_start":"2019-09-14T00:00:01.000Z","updated":"2022-05-24T00:34:36.844Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-14T23:59:59.000Z","id":"G2276688735-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190914-000001-e20190914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.867 + 0.001 37.772 180","-37.867 -180 37.772 0"],"time_start":"2019-09-15T00:00:01.000Z","updated":"2022-05-24T00:43:40.187Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-15T23:59:59.000Z","id":"G2276690112-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190915-000001-e20190915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.911 + 0.001 37.781 180","-37.911 -180 37.781 -0.001"],"time_start":"2019-09-16T00:00:01.000Z","updated":"2022-05-24T00:42:39.699Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-16T23:59:59.000Z","id":"G2276690029-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190916-000001-e20190916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.816 + 0.001 37.692 180","-37.816 -180 37.692 0"],"time_start":"2019-09-17T00:00:02.000Z","updated":"2022-05-24T00:27:28.441Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-17T23:59:59.000Z","id":"G2276687204-POCLOUD","original_format":"UMM_JSON","granule_size":"20.12715244293213","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190917-000002-e20190917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.87 + 0 37.598 180","-37.87 -180 37.598 -0.004"],"time_start":"2019-09-18T00:00:02.000Z","updated":"2022-05-24T00:29:37.525Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-18T23:59:59.000Z","id":"G2276687845-POCLOUD","original_format":"UMM_JSON","granule_size":"19.955843925476074","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190918-000002-e20190918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0 37.628 180","-37.636 -180 37.628 -0.001"],"time_start":"2019-09-19T00:00:01.000Z","updated":"2022-05-24T00:20:39.311Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-19T23:59:59.000Z","id":"G2276685846-POCLOUD","original_format":"UMM_JSON","granule_size":"16.8563871383667","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190919-000001-e20190919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.576 + 0 37.55 180","-37.576 -180 37.55 0"],"time_start":"2019-09-20T00:00:01.000Z","updated":"2022-05-24T00:17:32.339Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-20T23:59:59.000Z","id":"G2276685263-POCLOUD","original_format":"UMM_JSON","granule_size":"17.066829681396484","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190920-000001-e20190920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0.001 37.575 180","-37.623 -180 37.575 -0.001"],"time_start":"2019-09-21T00:00:00.000Z","updated":"2022-05-24T00:25:42.378Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-21T23:59:59.000Z","id":"G2276687036-POCLOUD","original_format":"UMM_JSON","granule_size":"18.14839458465576","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190921-000000-e20190921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.655 + 0.001 37.641 180","-37.655 -180 37.641 -0.001"],"time_start":"2019-09-22T00:00:01.000Z","updated":"2022-05-24T00:18:32.626Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-22T23:59:59.000Z","id":"G2276685626-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190922-000001-e20190922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.675 + 0 37.721 180","-37.675 -180 37.721 -0.002"],"time_start":"2019-09-23T00:00:02.000Z","updated":"2022-05-24T00:41:37.997Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-23T23:59:59.000Z","id":"G2276689688-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190923-000002-e20190923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.779 + 0.001 37.746 180","-37.779 -180 37.746 -0.003"],"time_start":"2019-09-24T00:00:02.000Z","updated":"2022-05-23T23:59:32.340Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-24T23:59:58.000Z","id":"G2276681343-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190924-000002-e20190924-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.768 + 0 37.696 180","-37.768 -180 37.696 -0.002"],"time_start":"2019-09-25T00:00:02.000Z","updated":"2022-05-24T00:03:37.976Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-25T23:59:59.000Z","id":"G2276682056-POCLOUD","original_format":"UMM_JSON","granule_size":"21.193781852722168","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190925-000002-e20190925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.783 + 0.001 37.814 180","-37.783 -180 37.814 -0.001"],"time_start":"2019-09-26T00:00:01.000Z","updated":"2022-05-24T00:31:29.392Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-26T23:59:59.000Z","id":"G2276688014-POCLOUD","original_format":"UMM_JSON","granule_size":"21.14664077758789","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190926-000001-e20190926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.742 + 0 37.741 180","-37.742 -180 37.741 -0.001"],"time_start":"2019-09-27T00:00:02.000Z","updated":"2022-05-24T00:04:37.490Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-27T23:59:59.000Z","id":"G2276682462-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190927-000002-e20190927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.6 + 0 37.752 180","-37.6 -180 37.752 0"],"time_start":"2019-09-28T00:00:00.000Z","updated":"2022-05-24T00:30:41.767Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-28T23:59:59.000Z","id":"G2276687964-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190928-000000-e20190928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.445 + 0.001 37.711 180","-37.445 -180 37.711 -0.001"],"time_start":"2019-09-29T00:00:00.000Z","updated":"2022-05-24T00:23:35.954Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-29T23:59:59.000Z","id":"G2276686707-POCLOUD","original_format":"UMM_JSON","granule_size":"19.82149887084961","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190929-000000-e20190929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.486 + 0.002 37.62 180","-37.486 -180 37.62 -0.001"],"time_start":"2019-09-30T00:00:01.000Z","updated":"2022-05-24T00:38:30.748Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-09-30T23:59:59.000Z","id":"G2276689499-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20190930-000001-e20190930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.604 + 0.002 37.615 180","-37.604 -180 37.615 -0.001"],"time_start":"2019-10-01T00:00:01.000Z","updated":"2022-05-24T00:00:50.122Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-01T23:59:59.000Z","id":"G2276681495-POCLOUD","original_format":"UMM_JSON","granule_size":"20.88240337371826","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191001-000001-e20191001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0.002 37.56 180","-37.565 -180 37.56 -0.002"],"time_start":"2019-10-02T00:00:02.000Z","updated":"2022-05-24T00:38:38.457Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-02T23:59:59.000Z","id":"G2276689516-POCLOUD","original_format":"UMM_JSON","granule_size":"20.85012722015381","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191002-000002-e20191002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.507 + 0.002 37.552 180","-37.507 -180 37.552 -0.001"],"time_start":"2019-10-03T00:00:00.000Z","updated":"2022-05-24T00:34:34.488Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-03T23:59:59.000Z","id":"G2276688730-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191003-000000-e20191003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.547 + 0.003 37.579 180","-37.547 -180 37.579 0"],"time_start":"2019-10-04T00:00:02.000Z","updated":"2022-05-24T00:36:39.272Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-04T23:59:59.000Z","id":"G2276688894-POCLOUD","original_format":"UMM_JSON","granule_size":"20.278943061828613","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191004-000002-e20191004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.548 + 0 37.599 180","-37.548 -180 37.599 -0.001"],"time_start":"2019-10-05T00:00:01.000Z","updated":"2022-05-24T00:41:31.298Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-05T23:59:59.000Z","id":"G2276689675-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191005-000001-e20191005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.531 + 0 37.521 180","-37.531 -180 37.521 -0.001"],"time_start":"2019-10-06T00:00:01.000Z","updated":"2022-05-24T00:48:35.984Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-06T23:59:59.000Z","id":"G2276692119-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191006-000001-e20191006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.446 + 0 37.465 180","-37.446 -180 37.465 -0.001"],"time_start":"2019-10-07T00:00:02.000Z","updated":"2022-05-23T23:48:02.758Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-07T23:59:59.000Z","id":"G2276678476-POCLOUD","original_format":"UMM_JSON","granule_size":"20.222168922424316","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191007-000002-e20191007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.509 + 0 37.458 180","-37.509 -180 37.458 -0.001"],"time_start":"2019-10-08T00:00:01.000Z","updated":"2022-05-24T00:33:37.812Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-08T23:59:59.000Z","id":"G2276688648-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191008-000001-e20191008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.493 + 0.001 37.438 180","-37.493 -180 37.438 -0.002"],"time_start":"2019-10-09T00:00:02.000Z","updated":"2022-05-23T23:57:33.120Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-09T23:59:59.000Z","id":"G2276680583-POCLOUD","original_format":"UMM_JSON","granule_size":"20.34821891784668","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191009-000002-e20191009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.582 + 0 37.506 180","-37.582 -180 37.506 -0.001"],"time_start":"2019-10-10T00:00:01.000Z","updated":"2022-05-23T23:59:27.346Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-10T23:59:59.000Z","id":"G2276681322-POCLOUD","original_format":"UMM_JSON","granule_size":"19.665902137756348","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191010-000001-e20191010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.569 + 0.007 37.582 180","-37.569 -180 37.582 -0.004"],"time_start":"2019-10-11T00:00:01.000Z","updated":"2022-05-24T00:39:34.523Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-11T23:59:59.000Z","id":"G2276689565-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191011-000001-e20191011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0 37.723 180","-37.644 -180 37.723 -0.001"],"time_start":"2019-10-12T00:00:02.000Z","updated":"2022-05-24T00:44:40.466Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-12T23:59:59.000Z","id":"G2276690217-POCLOUD","original_format":"UMM_JSON","granule_size":"20.893823623657227","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191012-000002-e20191012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.61 + 0 37.572 180","-37.61 -180 37.572 -0.001"],"time_start":"2019-10-13T00:00:01.000Z","updated":"2022-05-24T00:22:32.537Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-13T23:59:59.000Z","id":"G2276686557-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191013-000001-e20191013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0.006 37.585 180","-37.65 -180 37.585 -0.001"],"time_start":"2019-10-14T00:00:01.000Z","updated":"2022-05-24T00:03:37.819Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-14T23:59:59.000Z","id":"G2276682057-POCLOUD","original_format":"UMM_JSON","granule_size":"20.716683387756348","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191014-000001-e20191014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.626 + 0.002 37.663 180","-37.626 -180 37.663 -0.002"],"time_start":"2019-10-15T00:00:01.000Z","updated":"2022-05-24T00:32:45.935Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-15T23:59:59.000Z","id":"G2276688551-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191015-000001-e20191015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.576 + 0.004 37.536 180","-37.576 -180 37.536 0"],"time_start":"2019-10-16T00:00:01.000Z","updated":"2022-05-24T00:48:30.631Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-16T23:59:59.000Z","id":"G2276692094-POCLOUD","original_format":"UMM_JSON","granule_size":"17.316872596740723","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191016-000001-e20191016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.548 + 0 37.534 180","-37.548 -180 37.534 0"],"time_start":"2019-10-17T00:00:01.000Z","updated":"2022-05-24T00:10:41.475Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-17T23:59:59.000Z","id":"G2276683782-POCLOUD","original_format":"UMM_JSON","granule_size":"17.245697021484375","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191017-000001-e20191017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.561 + 0.001 37.571 180","-37.561 -180 37.571 -0.005"],"time_start":"2019-10-18T00:00:01.000Z","updated":"2022-05-24T00:08:32.198Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-18T23:59:59.000Z","id":"G2276683600-POCLOUD","original_format":"UMM_JSON","granule_size":"20.280505180358887","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191018-000001-e20191018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.606 + 0.001 37.808 180","-37.606 -180 37.808 -0.001"],"time_start":"2019-10-19T00:00:02.000Z","updated":"2022-05-24T00:30:33.008Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-19T23:59:59.000Z","id":"G2276687933-POCLOUD","original_format":"UMM_JSON","granule_size":"20.643648147583008","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191019-000002-e20191019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.812 + 0.001 37.685 180","-37.812 -180 37.685 -0.001"],"time_start":"2019-10-20T00:00:01.000Z","updated":"2022-05-24T00:23:41.167Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-20T23:59:59.000Z","id":"G2276686747-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191020-000001-e20191020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.799 + 0 37.662 180","-37.799 -180 37.662 -0.001"],"time_start":"2019-10-21T00:00:01.000Z","updated":"2022-05-24T00:02:32.774Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-21T23:59:59.000Z","id":"G2276681619-POCLOUD","original_format":"UMM_JSON","granule_size":"20.513941764831543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191021-000001-e20191021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0 37.669 180","-37.65 -180 37.669 0"],"time_start":"2019-10-22T00:00:02.000Z","updated":"2022-05-24T00:09:36.217Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-22T23:59:59.000Z","id":"G2276683695-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191022-000002-e20191022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.648 + 0 37.96 180","-37.648 -180 37.96 -0.004"],"time_start":"2019-10-23T00:00:02.000Z","updated":"2022-05-24T00:24:39.948Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-23T23:59:59.000Z","id":"G2276686919-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191023-000002-e20191023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.675 + 0 37.504 180","-37.675 -180 37.504 -0.003"],"time_start":"2019-10-24T00:00:00.000Z","updated":"2022-05-24T00:15:39.268Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-24T23:59:59.000Z","id":"G2276685007-POCLOUD","original_format":"UMM_JSON","granule_size":"21.06046199798584","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191024-000000-e20191024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.718 + 0.003 38.742 180","-37.718 -180 38.742 0"],"time_start":"2019-10-25T00:00:01.000Z","updated":"2022-05-24T00:13:32.483Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-25T23:59:59.000Z","id":"G2276684592-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191025-000001-e20191025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.675 + 0.001 37.535 180","-37.675 -180 37.535 -0.001"],"time_start":"2019-10-26T00:00:01.000Z","updated":"2022-05-24T00:19:39.494Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-26T23:59:59.000Z","id":"G2276685767-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191026-000001-e20191026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.834 + 0 37.68 180","-37.834 -180 37.68 0"],"time_start":"2019-10-27T00:00:02.000Z","updated":"2022-05-24T00:21:42.203Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-27T23:59:59.000Z","id":"G2276685951-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191027-000002-e20191027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.857 + 0.003 37.713 180","-37.857 -180 37.713 -0.003"],"time_start":"2019-10-28T00:00:01.000Z","updated":"2022-05-24T00:38:54.736Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-28T23:59:59.000Z","id":"G2276689529-POCLOUD","original_format":"UMM_JSON","granule_size":"17.414570808410645","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191028-000001-e20191028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.868 + 0.001 37.743 180","-37.868 -180 37.743 -0.001"],"time_start":"2019-10-29T00:00:02.000Z","updated":"2022-05-23T23:53:41.031Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-29T23:59:59.000Z","id":"G2276680337-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191029-000002-e20191029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.836 + 0.008 37.763 180","-37.836 -180 37.763 0"],"time_start":"2019-10-30T00:00:02.000Z","updated":"2022-05-24T00:10:37.903Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-30T23:59:59.000Z","id":"G2276683773-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191030-000002-e20191030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.788 + 0 37.674 180","-37.788 -180 37.674 -0.009"],"time_start":"2019-10-31T00:00:01.000Z","updated":"2022-05-24T00:18:41.121Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-10-31T23:59:59.000Z","id":"G2276685665-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191031-000001-e20191031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.735 + 0.002 37.698 180","-37.735 -180 37.698 0"],"time_start":"2019-11-01T00:00:01.000Z","updated":"2022-05-24T00:11:34.671Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-01T23:59:59.000Z","id":"G2276683836-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191101-000001-e20191101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.721 + 0.002 37.714 180","-37.721 -180 37.714 0"],"time_start":"2019-11-02T00:00:01.000Z","updated":"2022-05-24T00:13:35.456Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-02T23:59:59.000Z","id":"G2276684606-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191102-000001-e20191102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.734 + 0.001 37.73 180","-37.734 -180 37.73 0"],"time_start":"2019-11-03T00:00:00.000Z","updated":"2022-05-24T00:36:32.399Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-03T23:59:59.000Z","id":"G2276688873-POCLOUD","original_format":"UMM_JSON","granule_size":"17.428540229797363","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191103-000000-e20191103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0.002 37.694 180","-37.695 -180 37.694 -0.002"],"time_start":"2019-11-04T00:00:02.000Z","updated":"2022-05-24T00:40:41.174Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-04T23:59:58.000Z","id":"G2276689634-POCLOUD","original_format":"UMM_JSON","granule_size":"17.082364082336426","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191104-000002-e20191104-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.728 + 0 37.626 180","-37.728 -180 37.626 -0.002"],"time_start":"2019-11-05T00:00:02.000Z","updated":"2022-05-24T00:10:37.714Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-05T23:59:59.000Z","id":"G2276683771-POCLOUD","original_format":"UMM_JSON","granule_size":"16.50310230255127","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191105-000002-e20191105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.737 + 0.002 37.622 180","-37.737 -180 37.622 0"],"time_start":"2019-11-06T00:00:01.000Z","updated":"2022-05-24T00:15:31.294Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-06T23:59:59.000Z","id":"G2276684990-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191106-000001-e20191106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.726 + 0.001 37.764 180","-37.726 -180 37.764 -0.003"],"time_start":"2019-11-07T00:00:01.000Z","updated":"2022-05-23T23:47:37.662Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-07T23:59:59.000Z","id":"G2276677676-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191107-000001-e20191107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.763 + 0.001 37.764 180","-37.763 -180 37.764 0"],"time_start":"2019-11-08T00:00:01.000Z","updated":"2022-05-23T23:51:28.565Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-08T23:59:59.000Z","id":"G2276679858-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191108-000001-e20191108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.751 + 0 37.723 180","-37.751 -180 37.723 0"],"time_start":"2019-11-09T00:00:02.000Z","updated":"2022-05-24T00:09:30.137Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-09T23:59:59.000Z","id":"G2276683686-POCLOUD","original_format":"UMM_JSON","granule_size":"20.779616355895996","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191109-000002-e20191109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.702 + 0.001 37.723 180","-37.702 -180 37.723 -0.001"],"time_start":"2019-11-10T00:00:02.000Z","updated":"2022-05-24T00:45:42.021Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-10T23:59:59.000Z","id":"G2276690335-POCLOUD","original_format":"UMM_JSON","granule_size":"20.873183250427246","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191110-000002-e20191110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.758 + 0.004 37.728 180","-37.758 -180 37.728 -0.001"],"time_start":"2019-11-11T00:00:00.000Z","updated":"2022-05-24T00:34:33.101Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-11T23:59:59.000Z","id":"G2276688717-POCLOUD","original_format":"UMM_JSON","granule_size":"20.894049644470215","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191111-000000-e20191111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.789 + 0 37.761 180","-37.789 -180 37.761 -0.001"],"time_start":"2019-11-12T00:00:01.000Z","updated":"2022-05-24T00:01:40.021Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-12T23:59:59.000Z","id":"G2276681559-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191112-000001-e20191112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.776 + 0 37.778 180","-37.776 -180 37.778 0"],"time_start":"2019-11-13T00:00:01.000Z","updated":"2022-05-23T23:49:35.317Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-13T23:59:59.000Z","id":"G2276679627-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191113-000001-e20191113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.753 + 0.001 37.85 180","-37.753 -180 37.85 -0.001"],"time_start":"2019-11-14T00:00:01.000Z","updated":"2022-05-24T00:07:29.912Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-14T23:59:59.000Z","id":"G2276683345-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191114-000001-e20191114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.717 + 0.002 37.759 180","-37.717 -180 37.759 -0.002"],"time_start":"2019-11-15T00:00:01.000Z","updated":"2022-05-24T00:33:38.522Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-15T23:59:59.000Z","id":"G2276688653-POCLOUD","original_format":"UMM_JSON","granule_size":"19.821102142333984","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191115-000001-e20191115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.631 + 0.001 37.771 180","-37.631 -180 37.771 -0.003"],"time_start":"2019-11-16T00:00:01.000Z","updated":"2022-05-24T00:36:31.487Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-16T23:59:59.000Z","id":"G2276688871-POCLOUD","original_format":"UMM_JSON","granule_size":"20.690584182739258","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191116-000001-e20191116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.552 + 0.001 37.669 180","-37.552 -180 37.669 -0.001"],"time_start":"2019-11-17T00:00:02.000Z","updated":"2022-05-23T23:52:36.831Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-17T23:59:59.000Z","id":"G2276680272-POCLOUD","original_format":"UMM_JSON","granule_size":"20.828312873840332","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191117-000002-e20191117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.597 + 0.002 37.607 180","-37.597 -180 37.607 -0.002"],"time_start":"2019-11-18T00:00:02.000Z","updated":"2022-05-24T00:26:39.971Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-18T23:59:59.000Z","id":"G2276687138-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191118-000002-e20191118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.665 + 0 37.58 180","-37.665 -180 37.58 -0.002"],"time_start":"2019-11-19T00:00:01.000Z","updated":"2022-05-23T23:50:37.390Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-19T23:59:59.000Z","id":"G2276679786-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191119-000001-e20191119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.71 + 0 37.583 180","-37.71 -180 37.583 -0.001"],"time_start":"2019-11-20T00:00:00.000Z","updated":"2022-05-24T00:22:44.883Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-20T23:59:59.000Z","id":"G2276686603-POCLOUD","original_format":"UMM_JSON","granule_size":"21.62314796447754","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191120-000000-e20191120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.772 + 0.004 37.782 180","-37.772 -180 37.782 0"],"time_start":"2019-11-21T00:00:02.000Z","updated":"2022-05-24T00:01:45.910Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-21T23:59:59.000Z","id":"G2276681573-POCLOUD","original_format":"UMM_JSON","granule_size":"20.564790725708008","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191121-000002-e20191121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.79 + 0.003 37.774 180","-37.79 -180 37.774 0"],"time_start":"2019-11-22T00:00:02.000Z","updated":"2022-05-24T00:42:33.469Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-22T23:59:58.000Z","id":"G2276689988-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191122-000002-e20191122-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.774 + 0.002 37.754 180","-37.774 -180 37.754 -0.004"],"time_start":"2019-11-23T00:00:02.000Z","updated":"2022-05-23T23:50:34.064Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-23T23:59:59.000Z","id":"G2276679780-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191123-000002-e20191123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.78 + 0.002 37.719 180","-37.78 -180 37.719 0"],"time_start":"2019-11-24T00:00:02.000Z","updated":"2022-05-24T00:32:44.090Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-24T23:59:59.000Z","id":"G2276688547-POCLOUD","original_format":"UMM_JSON","granule_size":"20.94707202911377","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191124-000002-e20191124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.743 + 0 37.776 180","-37.743 -180 37.776 -0.001"],"time_start":"2019-11-25T00:00:02.000Z","updated":"2022-05-23T23:52:38.619Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-25T23:59:59.000Z","id":"G2276680276-POCLOUD","original_format":"UMM_JSON","granule_size":"20.807358741760254","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191125-000002-e20191125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.604 + 0 37.644 180","-37.604 -180 37.644 0"],"time_start":"2019-11-26T00:00:01.000Z","updated":"2022-05-24T00:17:41.447Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-26T23:59:59.000Z","id":"G2276685280-POCLOUD","original_format":"UMM_JSON","granule_size":"20.620787620544434","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191126-000001-e20191126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.605 + 0 37.519 180","-37.605 -180 37.519 -0.002"],"time_start":"2019-11-27T00:00:01.000Z","updated":"2022-05-23T23:49:28.793Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-27T23:59:59.000Z","id":"G2276679602-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191127-000001-e20191127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.585 + 0.007 37.509 180","-37.585 -180 37.509 -0.001"],"time_start":"2019-11-28T00:00:01.000Z","updated":"2022-05-23T23:57:38.058Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-28T23:59:59.000Z","id":"G2276680866-POCLOUD","original_format":"UMM_JSON","granule_size":"20.765873908996582","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191128-000001-e20191128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.657 + 0.001 37.633 180","-37.657 -180 37.633 -0.002"],"time_start":"2019-11-29T00:00:01.000Z","updated":"2022-05-24T00:19:38.588Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-29T23:59:59.000Z","id":"G2276685759-POCLOUD","original_format":"UMM_JSON","granule_size":"21.10015106201172","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191129-000001-e20191129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.624 + 0 37.469 180","-37.624 -180 37.469 -0.001"],"time_start":"2019-11-30T00:00:01.000Z","updated":"2022-05-23T23:58:29.022Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-11-30T23:59:59.000Z","id":"G2276681280-POCLOUD","original_format":"UMM_JSON","granule_size":"20.92703628540039","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191130-000001-e20191130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0.001 37.499 180","-37.623 -180 37.499 0"],"time_start":"2019-12-01T00:00:01.000Z","updated":"2022-05-24T00:38:45.284Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-01T23:59:59.000Z","id":"G2276689525-POCLOUD","original_format":"UMM_JSON","granule_size":"21.04530620574951","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191201-000001-e20191201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.612 + 0.001 37.511 180","-37.612 -180 37.511 -0.003"],"time_start":"2019-12-02T00:00:01.000Z","updated":"2022-05-24T00:45:47.257Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-02T23:59:59.000Z","id":"G2276690383-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191202-000001-e20191202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.622 + 0.003 37.517 180","-37.622 -180 37.517 -0.002"],"time_start":"2019-12-03T00:00:00.000Z","updated":"2022-05-24T00:15:29.982Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-03T23:59:59.000Z","id":"G2276684977-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191203-000000-e20191203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.509 + 0.002 38.325 180","-37.509 -180 38.325 0"],"time_start":"2019-12-04T00:00:01.000Z","updated":"2022-05-23T23:56:30.429Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-04T23:59:59.000Z","id":"G2276680502-POCLOUD","original_format":"UMM_JSON","granule_size":"19.9272403717041","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191204-000001-e20191204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.356 + 0 39.114 180","-37.356 -180 39.114 -0.002"],"time_start":"2019-12-05T00:00:01.000Z","updated":"2022-05-24T00:43:27.313Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-05T23:59:59.000Z","id":"G2276690085-POCLOUD","original_format":"UMM_JSON","granule_size":"19.152408599853516","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191205-000001-e20191205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.535 + 0 38.15 180","-37.535 -180 38.15 -0.001"],"time_start":"2019-12-06T00:00:00.000Z","updated":"2022-05-24T00:39:38.695Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-06T23:59:59.000Z","id":"G2276689570-POCLOUD","original_format":"UMM_JSON","granule_size":"19.244409561157227","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191206-000000-e20191206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.582 + 0.001 38.398 180","-37.582 -180 38.398 -0.002"],"time_start":"2019-12-07T00:00:01.000Z","updated":"2022-05-24T00:37:32.790Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-07T23:59:59.000Z","id":"G2276688930-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191207-000001-e20191207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.569 + 0.001 37.58 180","-37.569 -180 37.58 -0.002"],"time_start":"2019-12-08T00:00:02.000Z","updated":"2022-05-24T00:27:41.145Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-08T23:59:59.000Z","id":"G2276687476-POCLOUD","original_format":"UMM_JSON","granule_size":"19.333520889282227","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191208-000002-e20191208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.587 + 0.001 38.632 180","-37.587 -180 38.632 -0.002"],"time_start":"2019-12-09T00:00:02.000Z","updated":"2022-05-24T00:16:32.816Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-09T23:59:59.000Z","id":"G2276685063-POCLOUD","original_format":"UMM_JSON","granule_size":"19.18180561065674","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191209-000002-e20191209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.601 + 0.008 38.5 180","-37.601 -180 38.5 0"],"time_start":"2019-12-10T00:00:01.000Z","updated":"2022-05-24T00:45:36.763Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-10T23:59:59.000Z","id":"G2276690294-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191210-000001-e20191210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.579 + 0.001 39.485 180","-37.579 -180 39.485 -0.001"],"time_start":"2019-12-11T00:00:01.000Z","updated":"2022-05-23T23:58:35.790Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-11T23:59:59.000Z","id":"G2276681298-POCLOUD","original_format":"UMM_JSON","granule_size":"19.247403144836426","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191211-000001-e20191211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.599 + 0.001 39.522 180","-37.599 -180 39.522 -0.002"],"time_start":"2019-12-12T00:00:01.000Z","updated":"2022-05-24T00:39:36.928Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-12T23:59:59.000Z","id":"G2276689567-POCLOUD","original_format":"UMM_JSON","granule_size":"19.060901641845703","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191212-000001-e20191212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.553 + 0.002 37.493 180","-37.553 -180 37.493 0"],"time_start":"2019-12-13T00:00:01.000Z","updated":"2022-05-24T00:32:44.932Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-13T23:59:59.000Z","id":"G2276688549-POCLOUD","original_format":"UMM_JSON","granule_size":"20.17793846130371","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191213-000001-e20191213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.456 + 0.002 37.88 180","-37.456 -180 37.88 -0.003"],"time_start":"2019-12-14T00:00:01.000Z","updated":"2022-05-24T00:29:39.482Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-14T23:59:59.000Z","id":"G2276687862-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191214-000001-e20191214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.579 + 0.001 37.539 180","-37.579 -180 37.539 0"],"time_start":"2019-12-15T00:00:02.000Z","updated":"2022-05-24T00:44:35.587Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-15T23:59:59.000Z","id":"G2276690227-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191215-000002-e20191215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.43 + 0 38.511 180","-37.43 -180 38.511 -0.001"],"time_start":"2019-12-16T00:00:00.000Z","updated":"2022-05-23T23:51:35.867Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-16T23:59:59.000Z","id":"G2276679888-POCLOUD","original_format":"UMM_JSON","granule_size":"17.14940357208252","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191216-000000-e20191216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.706 + 0 37.738 180","-37.706 -180 37.738 0"],"time_start":"2019-12-17T00:00:01.000Z","updated":"2022-05-24T00:17:41.683Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-17T23:59:59.000Z","id":"G2276685282-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191217-000001-e20191217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.651 + 0.001 37.662 180","-37.651 -180 37.662 -0.001"],"time_start":"2019-12-18T00:00:02.000Z","updated":"2022-05-24T00:40:36.966Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-18T23:59:59.000Z","id":"G2276689627-POCLOUD","original_format":"UMM_JSON","granule_size":"20.830467224121094","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191218-000002-e20191218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0.006 37.654 180","-37.695 -180 37.654 -0.002"],"time_start":"2019-12-19T00:00:01.000Z","updated":"2022-05-24T00:24:35.478Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-19T23:59:59.000Z","id":"G2276686864-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191219-000001-e20191219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0.001 37.652 180","-37.65 -180 37.652 -0.001"],"time_start":"2019-12-20T00:00:01.000Z","updated":"2022-05-24T00:20:38.227Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-20T23:59:59.000Z","id":"G2276685840-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191220-000001-e20191220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.659 + 0.001 37.634 180","-37.659 -180 37.634 -0.004"],"time_start":"2019-12-21T00:00:01.000Z","updated":"2022-05-24T00:38:31.518Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-21T23:59:59.000Z","id":"G2276689507-POCLOUD","original_format":"UMM_JSON","granule_size":"21.21089267730713","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191221-000001-e20191221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.529 + 0.002 37.676 180","-37.529 -180 37.676 -0.001"],"time_start":"2019-12-22T00:00:01.000Z","updated":"2022-05-24T00:33:37.159Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-22T23:59:59.000Z","id":"G2276688647-POCLOUD","original_format":"UMM_JSON","granule_size":"20.838504791259766","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191222-000001-e20191222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0 37.666 180","-37.603 -180 37.666 -0.001"],"time_start":"2019-12-23T00:00:01.000Z","updated":"2022-05-24T00:17:42.424Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-23T23:59:59.000Z","id":"G2276685281-POCLOUD","original_format":"UMM_JSON","granule_size":"20.456400871276855","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191223-000001-e20191223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.697 + 0.001 37.754 180","-37.697 -180 37.754 -0.001"],"time_start":"2019-12-24T00:00:01.000Z","updated":"2022-05-24T00:10:28.815Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-24T23:59:59.000Z","id":"G2276683740-POCLOUD","original_format":"UMM_JSON","granule_size":"20.19441032409668","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191224-000001-e20191224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.77 + 0 37.779 180","-37.77 -180 37.779 -0.003"],"time_start":"2019-12-25T00:00:02.000Z","updated":"2022-05-24T00:00:36.523Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-25T23:59:59.000Z","id":"G2276681463-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191225-000002-e20191225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.77 + 0.003 37.818 180","-37.77 -180 37.818 0"],"time_start":"2019-12-26T00:00:01.000Z","updated":"2022-05-24T00:42:32.541Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-26T23:59:59.000Z","id":"G2276689984-POCLOUD","original_format":"UMM_JSON","granule_size":"20.34694480895996","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191226-000001-e20191226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.796 + 0.004 37.751 180","-37.796 -180 37.751 -0.001"],"time_start":"2019-12-27T00:00:01.000Z","updated":"2022-05-24T00:34:42.104Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-27T23:59:59.000Z","id":"G2276688740-POCLOUD","original_format":"UMM_JSON","granule_size":"20.567724227905273","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191227-000001-e20191227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.804 + 0 37.771 180","-37.804 -180 37.771 -0.001"],"time_start":"2019-12-28T00:00:01.000Z","updated":"2022-05-24T00:46:29.042Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-28T23:59:59.000Z","id":"G2276690867-POCLOUD","original_format":"UMM_JSON","granule_size":"20.32774066925049","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191228-000001-e20191228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.774 + 0 37.766 180","-37.774 -180 37.766 -0.004"],"time_start":"2019-12-29T00:00:02.000Z","updated":"2022-05-24T00:44:52.902Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-29T23:59:59.000Z","id":"G2276690226-POCLOUD","original_format":"UMM_JSON","granule_size":"20.744028091430664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191229-000002-e20191229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.696 + 0.003 37.692 180","-37.696 -180 37.692 -0.003"],"time_start":"2019-12-30T00:00:01.000Z","updated":"2022-05-24T00:17:41.370Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-30T23:59:59.000Z","id":"G2276685279-POCLOUD","original_format":"UMM_JSON","granule_size":"21.133822441101074","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191230-000001-e20191230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.698 + 0 37.735 180","-37.698 -180 37.735 -0.001"],"time_start":"2019-12-31T00:00:02.000Z","updated":"2022-05-24T00:39:30.557Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2019-12-31T23:59:59.000Z","id":"G2276689561-POCLOUD","original_format":"UMM_JSON","granule_size":"20.946096420288086","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20191231-000002-e20191231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.753 + 0.001 37.699 180","-37.753 -180 37.699 0"],"time_start":"2020-01-01T00:00:01.000Z","updated":"2022-05-24T00:45:35.389Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-01T23:59:59.000Z","id":"G2276690290-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200101-000001-e20200101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.715 + 0.001 37.746 180","-37.715 -180 37.746 -0.002"],"time_start":"2020-01-02T00:00:01.000Z","updated":"2022-05-23T23:50:39.196Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-02T23:59:59.000Z","id":"G2276679799-POCLOUD","original_format":"UMM_JSON","granule_size":"20.41415786743164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200102-000001-e20200102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.71 + 0.001 37.741 180","-37.71 -180 37.741 -0.002"],"time_start":"2020-01-03T00:00:00.000Z","updated":"2022-05-23T23:54:32.974Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-03T23:59:59.000Z","id":"G2276680366-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200103-000000-e20200103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.799 + 0.001 37.583 180","-37.799 -180 37.583 0"],"time_start":"2020-01-04T00:00:01.000Z","updated":"2022-05-23T23:59:36.425Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-04T23:59:59.000Z","id":"G2276681355-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200104-000001-e20200104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.794 + 0.002 37.519 180","-37.794 -180 37.519 -0.001"],"time_start":"2020-01-05T00:00:02.000Z","updated":"2022-05-23T23:48:34.653Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-05T23:59:59.000Z","id":"G2276679031-POCLOUD","original_format":"UMM_JSON","granule_size":"20.437748908996582","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200105-000002-e20200105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.809 + 0 37.633 180","-37.809 -180 37.633 0"],"time_start":"2020-01-06T00:00:00.000Z","updated":"2022-05-24T00:40:38.220Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-06T23:59:59.000Z","id":"G2276689630-POCLOUD","original_format":"UMM_JSON","granule_size":"20.44214916229248","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200106-000000-e20200106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.778 + 0 37.724 180","-37.778 -180 37.724 -0.001"],"time_start":"2020-01-07T00:00:01.000Z","updated":"2022-05-24T00:40:31.461Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-07T23:59:59.000Z","id":"G2276689618-POCLOUD","original_format":"UMM_JSON","granule_size":"20.70716667175293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200107-000001-e20200107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.825 + 0 37.554 180","-37.825 -180 37.554 0"],"time_start":"2020-01-08T00:00:01.000Z","updated":"2022-05-24T00:02:30.038Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-08T23:59:59.000Z","id":"G2276681613-POCLOUD","original_format":"UMM_JSON","granule_size":"20.918660163879395","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200108-000001-e20200108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.861 + 0 37.694 180","-37.861 -180 37.694 0"],"time_start":"2020-01-09T00:00:00.000Z","updated":"2022-05-23T23:51:34.569Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-09T23:59:59.000Z","id":"G2276679882-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200109-000000-e20200109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.831 + 0.001 37.639 180","-37.831 -180 37.639 -0.001"],"time_start":"2020-01-10T00:00:01.000Z","updated":"2022-05-24T00:00:34.919Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-10T23:59:59.000Z","id":"G2276681459-POCLOUD","original_format":"UMM_JSON","granule_size":"20.629362106323242","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200110-000001-e20200110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.865 + 0 37.699 180","-37.865 -180 37.699 -0.002"],"time_start":"2020-01-11T00:00:01.000Z","updated":"2022-05-24T00:37:31.614Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-11T23:59:59.000Z","id":"G2276688929-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200111-000001-e20200111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.84 + 0.003 37.752 180","-37.84 -180 37.752 -0.001"],"time_start":"2020-01-12T00:00:01.000Z","updated":"2022-05-24T00:10:36.918Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-12T23:59:59.000Z","id":"G2276683767-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200112-000001-e20200112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.739 + 0.003 37.621 180","-37.739 -180 37.621 -0.001"],"time_start":"2020-01-13T00:00:02.000Z","updated":"2022-05-24T00:49:33.781Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-13T23:59:59.000Z","id":"G2276692712-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200113-000002-e20200113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.624 + 0.001 37.544 180","-37.624 -180 37.544 -0.002"],"time_start":"2020-01-14T00:00:01.000Z","updated":"2022-05-24T00:41:37.276Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-14T23:59:59.000Z","id":"G2276689684-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200114-000001-e20200114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.589 + 0.004 37.513 180","-37.589 -180 37.513 0"],"time_start":"2020-01-15T00:00:01.000Z","updated":"2022-05-23T23:49:39.989Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-15T23:59:59.000Z","id":"G2276679651-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200115-000001-e20200115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.684 + 0.002 37.549 180","-37.684 -180 37.549 -0.003"],"time_start":"2020-01-16T00:00:01.000Z","updated":"2022-05-24T00:28:33.577Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-16T23:59:59.000Z","id":"G2276687709-POCLOUD","original_format":"UMM_JSON","granule_size":"20.58076572418213","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200116-000001-e20200116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.689 + 0.004 37.593 180","-37.689 -180 37.593 -0.001"],"time_start":"2020-01-17T00:00:02.000Z","updated":"2022-05-24T00:36:36.159Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-17T23:59:59.000Z","id":"G2276688892-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200117-000002-e20200117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.774 + 0 37.755 180","-37.774 -180 37.755 -0.002"],"time_start":"2020-01-18T00:00:02.000Z","updated":"2022-05-24T00:06:32.201Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-18T23:59:59.000Z","id":"G2276682852-POCLOUD","original_format":"UMM_JSON","granule_size":"21.440632820129395","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200118-000002-e20200118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.8 + 0.002 37.846 180","-37.8 -180 37.846 0"],"time_start":"2020-01-19T00:00:02.000Z","updated":"2022-05-24T00:36:42.672Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-19T23:59:59.000Z","id":"G2276688893-POCLOUD","original_format":"UMM_JSON","granule_size":"21.16726303100586","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200119-000002-e20200119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0 37.665 180","-37.791 -180 37.665 -0.001"],"time_start":"2020-01-20T00:00:01.000Z","updated":"2022-05-24T00:14:35.907Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-20T23:59:59.000Z","id":"G2276684744-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200120-000001-e20200120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0.003 37.747 180","-37.747 -180 37.747 0"],"time_start":"2020-01-21T00:00:01.000Z","updated":"2022-05-23T23:52:36.557Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-21T23:59:59.000Z","id":"G2276680265-POCLOUD","original_format":"UMM_JSON","granule_size":"20.75758171081543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200121-000001-e20200121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.661 + 0.001 37.733 180","-37.661 -180 37.733 -0.004"],"time_start":"2020-01-22T00:00:00.000Z","updated":"2022-05-24T00:24:38.884Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-22T23:59:59.000Z","id":"G2276686889-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200122-000000-e20200122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.601 + 0.001 37.545 180","-37.601 -180 37.545 -0.001"],"time_start":"2020-01-23T00:00:01.000Z","updated":"2022-05-24T00:40:30.977Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-23T23:59:59.000Z","id":"G2276689611-POCLOUD","original_format":"UMM_JSON","granule_size":"20.372742652893066","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200123-000001-e20200123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.527 + 0.004 38.86 180","-37.527 -180 38.86 0"],"time_start":"2020-01-24T00:00:01.000Z","updated":"2022-05-24T00:18:36.802Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-24T23:59:59.000Z","id":"G2276685648-POCLOUD","original_format":"UMM_JSON","granule_size":"19.807449340820312","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200124-000001-e20200124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.391 + 0 38.955 180","-37.391 -180 38.955 -0.001"],"time_start":"2020-01-25T00:00:00.000Z","updated":"2022-05-24T00:39:29.824Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-25T23:59:59.000Z","id":"G2276689559-POCLOUD","original_format":"UMM_JSON","granule_size":"19.34795379638672","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200125-000000-e20200125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.579 + 0.002 38.581 180","-37.579 -180 38.581 -0.002"],"time_start":"2020-01-26T00:00:01.000Z","updated":"2022-05-24T00:28:44.602Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-26T23:59:59.000Z","id":"G2276687742-POCLOUD","original_format":"UMM_JSON","granule_size":"19.141693115234375","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200126-000001-e20200126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.524 + 0.002 38.852 180","-37.524 -180 38.852 -0.001"],"time_start":"2020-01-27T00:00:01.000Z","updated":"2022-05-24T00:40:38.516Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-27T23:59:59.000Z","id":"G2276689628-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200127-000001-e20200127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.458 + 0.002 38.465 180","-37.458 -180 38.465 -0.001"],"time_start":"2020-01-28T00:00:01.000Z","updated":"2022-05-24T00:41:31.877Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-28T23:59:59.000Z","id":"G2276689676-POCLOUD","original_format":"UMM_JSON","granule_size":"19.201138496398926","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200128-000001-e20200128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.528 + 0 38 180","-37.528 -180 38 -0.002"],"time_start":"2020-01-29T00:00:00.000Z","updated":"2022-05-24T00:34:31.538Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-29T23:59:59.000Z","id":"G2276688713-POCLOUD","original_format":"UMM_JSON","granule_size":"19.444350242614746","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200129-000000-e20200129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.506 + 0 38.186 180","-37.506 -180 38.186 -0.001"],"time_start":"2020-01-30T00:00:01.000Z","updated":"2022-05-24T00:21:35.255Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-30T23:59:59.000Z","id":"G2276685953-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200130-000001-e20200130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.483 + 0 37.512 180","-37.483 -180 37.512 -0.004"],"time_start":"2020-01-31T00:00:01.000Z","updated":"2022-05-24T00:26:36.632Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-01-31T23:59:59.000Z","id":"G2276687123-POCLOUD","original_format":"UMM_JSON","granule_size":"16.717778205871582","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200131-000001-e20200131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.457 + 0 37.526 180","-37.457 -180 37.526 -0.001"],"time_start":"2020-02-01T00:00:01.000Z","updated":"2022-05-24T00:04:32.466Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-01T23:59:59.000Z","id":"G2276682451-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200201-000001-e20200201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.506 + 0.001 37.571 180","-37.506 -180 37.571 -0.005"],"time_start":"2020-02-02T00:00:02.000Z","updated":"2022-05-24T00:12:34.741Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-02T23:59:59.000Z","id":"G2276683956-POCLOUD","original_format":"UMM_JSON","granule_size":"19.48407745361328","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200202-000002-e20200202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.718 + 0.001 37.569 180","-37.718 -180 37.569 -0.005"],"time_start":"2020-02-03T00:00:01.000Z","updated":"2022-05-24T00:08:33.248Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-03T23:59:59.000Z","id":"G2276683598-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200203-000001-e20200203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.575 + 0 37.548 180","-37.575 -180 37.548 -0.001"],"time_start":"2020-02-04T00:00:02.000Z","updated":"2022-05-24T00:42:37.984Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-04T23:59:59.000Z","id":"G2276690011-POCLOUD","original_format":"UMM_JSON","granule_size":"20.022897720336914","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200204-000002-e20200204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.605 + 0 37.616 180","-37.605 -180 37.616 -0.002"],"time_start":"2020-02-05T00:00:02.000Z","updated":"2022-05-24T00:27:30.218Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-05T23:59:59.000Z","id":"G2276687209-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200205-000002-e20200205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0.001 37.633 180","-37.595 -180 37.633 -0.002"],"time_start":"2020-02-06T00:00:01.000Z","updated":"2022-05-24T00:29:31.830Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-06T23:59:59.000Z","id":"G2276687828-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200206-000001-e20200206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.637 + 0.001 37.664 180","-37.637 -180 37.664 0"],"time_start":"2020-02-07T00:00:00.000Z","updated":"2022-05-24T00:24:28.788Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-07T23:59:59.000Z","id":"G2276686840-POCLOUD","original_format":"UMM_JSON","granule_size":"20.488478660583496","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200207-000000-e20200207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.634 + 0.001 37.504 180","-37.634 -180 37.504 -0.001"],"time_start":"2020-02-08T00:00:02.000Z","updated":"2022-05-23T23:50:37.040Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-08T23:59:59.000Z","id":"G2276679785-POCLOUD","original_format":"UMM_JSON","granule_size":"20.445865631103516","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200208-000002-e20200208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.538 + 0.001 37.485 180","-37.538 -180 37.485 -0.002"],"time_start":"2020-02-09T00:00:01.000Z","updated":"2022-05-24T00:16:35.464Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-09T23:59:59.000Z","id":"G2276685080-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200209-000001-e20200209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.545 + 0 37.57 180","-37.545 -180 37.57 -0.003"],"time_start":"2020-02-10T00:00:01.000Z","updated":"2022-05-24T00:26:33.860Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-10T23:59:59.000Z","id":"G2276687110-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200210-000001-e20200210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0 37.512 180","-37.638 -180 37.512 -0.001"],"time_start":"2020-02-11T00:00:01.000Z","updated":"2022-05-24T00:33:41.761Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-11T23:59:59.000Z","id":"G2276688662-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200211-000001-e20200211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.731 + 0.001 37.597 180","-37.731 -180 37.597 0"],"time_start":"2020-02-12T00:00:02.000Z","updated":"2022-05-23T23:58:36.378Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-12T23:59:59.000Z","id":"G2276681301-POCLOUD","original_format":"UMM_JSON","granule_size":"20.481704711914062","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200212-000002-e20200212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.78 + 0 37.601 180","-37.78 -180 37.601 -0.001"],"time_start":"2020-02-13T00:00:02.000Z","updated":"2022-05-24T00:45:34.114Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-13T23:59:59.000Z","id":"G2276690268-POCLOUD","original_format":"UMM_JSON","granule_size":"20.356700897216797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200213-000002-e20200213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.813 + 0.002 37.708 180","-37.813 -180 37.708 -0.001"],"time_start":"2020-02-14T00:00:00.000Z","updated":"2022-05-23T23:48:04.260Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-14T23:59:59.000Z","id":"G2276678490-POCLOUD","original_format":"UMM_JSON","granule_size":"20.831552505493164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200214-000000-e20200214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.79 + 0.003 37.616 180","-37.79 -180 37.616 -0.008"],"time_start":"2020-02-15T00:00:01.000Z","updated":"2022-05-24T00:24:37.247Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-15T23:59:59.000Z","id":"G2276686875-POCLOUD","original_format":"UMM_JSON","granule_size":"20.67094898223877","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200215-000001-e20200215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0 37.535 180","-37.73 -180 37.535 -0.001"],"time_start":"2020-02-16T00:00:01.000Z","updated":"2022-05-24T00:27:37.747Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-16T23:59:59.000Z","id":"G2276687458-POCLOUD","original_format":"UMM_JSON","granule_size":"21.339531898498535","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200216-000001-e20200216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.683 + 0 37.573 180","-37.683 -180 37.573 -0.001"],"time_start":"2020-02-17T00:00:01.000Z","updated":"2022-05-24T00:28:28.553Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-17T23:59:59.000Z","id":"G2276687734-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200217-000001-e20200217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.664 + 0.001 37.592 180","-37.664 -180 37.592 -0.001"],"time_start":"2020-02-18T00:00:01.000Z","updated":"2022-05-24T00:34:32.272Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-18T23:59:59.000Z","id":"G2276688712-POCLOUD","original_format":"UMM_JSON","granule_size":"20.55769157409668","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200218-000001-e20200218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.825 + 0.003 37.61 180","-37.825 -180 37.61 -0.002"],"time_start":"2020-02-19T00:00:01.000Z","updated":"2022-05-23T23:51:33.790Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-19T23:59:59.000Z","id":"G2276679872-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200219-000001-e20200219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.727 + 0 37.541 180","-37.727 -180 37.541 -0.002"],"time_start":"2020-02-20T00:00:01.000Z","updated":"2022-05-24T00:45:33.404Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-20T23:59:59.000Z","id":"G2276690265-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200220-000001-e20200220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.859 + 0.002 37.611 180","-37.859 -180 37.611 -0.003"],"time_start":"2020-02-21T00:00:02.000Z","updated":"2022-05-23T23:53:25.694Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-21T23:59:59.000Z","id":"G2276680298-POCLOUD","original_format":"UMM_JSON","granule_size":"17.162617683410645","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200221-000002-e20200221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.866 + 0 37.618 180","-37.866 -180 37.618 -0.001"],"time_start":"2020-02-22T00:00:01.000Z","updated":"2022-05-24T00:14:28.937Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-22T23:59:59.000Z","id":"G2276684711-POCLOUD","original_format":"UMM_JSON","granule_size":"16.872023582458496","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200222-000001-e20200222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.892 + 0.002 37.714 180","-37.892 -180 37.714 -0.003"],"time_start":"2020-02-23T00:00:01.000Z","updated":"2022-05-24T00:05:28.280Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-23T23:59:59.000Z","id":"G2276682609-POCLOUD","original_format":"UMM_JSON","granule_size":"18.997926712036133","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200223-000001-e20200223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.809 + 0.001 37.723 180","-37.809 -180 37.723 -0.001"],"time_start":"2020-02-24T00:00:01.000Z","updated":"2022-05-24T00:11:32.486Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-24T23:59:59.000Z","id":"G2276683834-POCLOUD","original_format":"UMM_JSON","granule_size":"19.658159255981445","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200224-000001-e20200224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.81 + 0.002 37.573 180","-37.81 -180 37.573 -0.002"],"time_start":"2020-02-25T00:00:01.000Z","updated":"2022-05-24T00:02:36.779Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-25T23:59:59.000Z","id":"G2276681630-POCLOUD","original_format":"UMM_JSON","granule_size":"20.801801681518555","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200225-000001-e20200225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.794 + 0.003 37.631 180","-37.794 -180 37.631 -0.001"],"time_start":"2020-02-26T00:00:02.000Z","updated":"2022-05-24T00:22:32.531Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-26T23:59:59.000Z","id":"G2276686538-POCLOUD","original_format":"UMM_JSON","granule_size":"21.032487869262695","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200226-000002-e20200226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.724 + 0.002 37.645 180","-37.724 -180 37.645 -0.006"],"time_start":"2020-02-27T00:00:02.000Z","updated":"2022-05-24T00:24:31.657Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-27T23:59:59.000Z","id":"G2276686847-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200227-000002-e20200227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.001 37.57 180","-37.769 -180 37.57 -0.004"],"time_start":"2020-02-28T00:00:02.000Z","updated":"2022-05-24T00:15:34.970Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-28T23:59:59.000Z","id":"G2276685000-POCLOUD","original_format":"UMM_JSON","granule_size":"20.28590488433838","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200228-000002-e20200228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.724 + 0 37.735 180","-37.724 -180 37.735 -0.001"],"time_start":"2020-02-29T00:00:01.000Z","updated":"2022-05-24T00:05:34.911Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-02-29T23:59:59.000Z","id":"G2276682641-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200229-000001-e20200229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.764 + 0.002 37.68 180","-37.764 -180 37.68 0"],"time_start":"2020-03-01T00:00:01.000Z","updated":"2022-05-23T23:48:05.436Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-01T23:59:59.000Z","id":"G2276678493-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200301-000001-e20200301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.684 + 0.001 37.57 180","-37.684 -180 37.57 -0.002"],"time_start":"2020-03-02T00:00:01.000Z","updated":"2022-05-24T00:12:32.481Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-02T23:59:59.000Z","id":"G2276683942-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200302-000001-e20200302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.77 + 0 37.58 180","-37.77 -180 37.58 -0.001"],"time_start":"2020-03-03T00:00:00.000Z","updated":"2022-05-23T23:56:38.559Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-03T23:59:59.000Z","id":"G2276680533-POCLOUD","original_format":"UMM_JSON","granule_size":"19.957862854003906","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200303-000000-e20200303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.781 + 0.001 37.638 180","-37.781 -180 37.638 -0.003"],"time_start":"2020-03-04T00:00:00.000Z","updated":"2022-05-24T00:43:38.461Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-04T23:59:59.000Z","id":"G2276690108-POCLOUD","original_format":"UMM_JSON","granule_size":"19.847861289978027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200304-000000-e20200304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.7 + 0 37.575 180","-37.7 -180 37.575 0"],"time_start":"2020-03-05T00:00:02.000Z","updated":"2022-05-24T00:22:29.059Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-05T23:59:59.000Z","id":"G2276686301-POCLOUD","original_format":"UMM_JSON","granule_size":"19.612960815429688","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200305-000002-e20200305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.687 + 0 37.668 180","-37.687 -180 37.668 -0.001"],"time_start":"2020-03-06T00:00:00.000Z","updated":"2022-05-23T23:49:39.483Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-06T23:59:59.000Z","id":"G2276679645-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200306-000000-e20200306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.808 + 0.001 37.67 180","-37.808 -180 37.67 0"],"time_start":"2020-03-07T00:00:02.000Z","updated":"2022-05-23T23:56:41.865Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-07T23:59:59.000Z","id":"G2276680547-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200307-000002-e20200307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.761 + 0.001 37.747 180","-37.761 -180 37.747 -0.001"],"time_start":"2020-03-08T00:00:02.000Z","updated":"2022-05-23T23:52:27.065Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-08T23:59:59.000Z","id":"G2276680065-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200308-000002-e20200308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.763 + 0.002 37.831 180","-37.763 -180 37.831 -0.001"],"time_start":"2020-03-09T00:00:01.000Z","updated":"2022-05-23T23:58:39.498Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-09T23:59:59.000Z","id":"G2276681303-POCLOUD","original_format":"UMM_JSON","granule_size":"20.137493133544922","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200309-000001-e20200309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.759 + 0 37.73 180","-37.759 -180 37.73 -0.002"],"time_start":"2020-03-10T00:00:00.000Z","updated":"2022-05-23T23:49:30.802Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-10T23:59:59.000Z","id":"G2276679607-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200310-000000-e20200310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.709 + 0.001 37.715 180","-37.709 -180 37.715 -0.002"],"time_start":"2020-03-11T00:00:01.000Z","updated":"2022-05-23T23:49:36.685Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-11T23:59:59.000Z","id":"G2276679641-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200311-000001-e20200311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.59 + 0.001 37.615 180","-37.59 -180 37.615 0"],"time_start":"2020-03-12T00:00:01.000Z","updated":"2022-05-24T00:18:40.981Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-12T23:59:59.000Z","id":"G2276685668-POCLOUD","original_format":"UMM_JSON","granule_size":"20.065871238708496","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200312-000001-e20200312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.54 + 0 37.598 180","-37.54 -180 37.598 -0.001"],"time_start":"2020-03-13T00:00:01.000Z","updated":"2022-05-24T00:04:35.009Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-13T23:59:59.000Z","id":"G2276682456-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200313-000001-e20200313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.556 + 0.002 37.63 180","-37.556 -180 37.63 -0.002"],"time_start":"2020-03-14T00:00:01.000Z","updated":"2022-05-23T23:59:38.803Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-14T23:59:59.000Z","id":"G2276681359-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200314-000001-e20200314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.606 + 0 37.694 180","-37.606 -180 37.694 -0.001"],"time_start":"2020-03-15T00:00:01.000Z","updated":"2022-05-24T00:46:32.566Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-15T23:59:59.000Z","id":"G2276690925-POCLOUD","original_format":"UMM_JSON","granule_size":"20.262822151184082","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200315-000001-e20200315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0 37.635 180","-37.695 -180 37.635 -0.002"],"time_start":"2020-03-16T00:00:01.000Z","updated":"2022-05-24T00:16:36.524Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-16T23:59:59.000Z","id":"G2276685090-POCLOUD","original_format":"UMM_JSON","granule_size":"20.724061012268066","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200316-000001-e20200316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.733 + 0.001 37.704 180","-37.733 -180 37.704 -0.001"],"time_start":"2020-03-17T00:00:01.000Z","updated":"2022-05-24T00:22:43.234Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-17T23:59:59.000Z","id":"G2276686595-POCLOUD","original_format":"UMM_JSON","granule_size":"20.772704124450684","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200317-000001-e20200317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.672 + 0.002 37.656 180","-37.672 -180 37.656 -0.001"],"time_start":"2020-03-18T00:00:02.000Z","updated":"2022-05-23T23:56:32.138Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-18T23:59:59.000Z","id":"G2276680506-POCLOUD","original_format":"UMM_JSON","granule_size":"20.59375762939453","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200318-000002-e20200318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.656 + 0.001 37.744 180","-37.656 -180 37.744 -0.006"],"time_start":"2020-03-19T00:00:02.000Z","updated":"2022-05-24T00:12:43.090Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-19T23:59:59.000Z","id":"G2276684462-POCLOUD","original_format":"UMM_JSON","granule_size":"19.176417350769043","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200319-000002-e20200319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.72 + 0.007 37.646 180","-37.72 -180 37.646 -0.004"],"time_start":"2020-03-20T00:00:01.000Z","updated":"2022-05-24T00:43:37.741Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-20T23:59:59.000Z","id":"G2276690106-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200320-000001-e20200320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.555 + 0.004 37.71 180","-37.555 -180 37.71 -0.001"],"time_start":"2020-03-21T00:00:02.000Z","updated":"2022-05-23T23:50:36.930Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-21T23:59:59.000Z","id":"G2276679784-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200321-000002-e20200321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.588 + 0.003 37.528 180","-37.588 -180 37.528 -0.001"],"time_start":"2020-03-22T00:00:01.000Z","updated":"2022-05-23T23:54:38.286Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-22T23:59:59.000Z","id":"G2276680372-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200322-000001-e20200322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.581 + 0 37.582 180","-37.581 -180 37.582 -0.001"],"time_start":"2020-03-23T00:00:00.000Z","updated":"2022-05-24T00:36:35.898Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-23T23:59:59.000Z","id":"G2276688881-POCLOUD","original_format":"UMM_JSON","granule_size":"20.54745864868164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200323-000000-e20200323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.617 + 0 37.597 180","-37.617 -180 37.597 -0.001"],"time_start":"2020-03-24T00:00:01.000Z","updated":"2022-05-24T00:15:31.848Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-24T23:59:59.000Z","id":"G2276684985-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200324-000001-e20200324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.637 + 0.001 37.535 180","-37.637 -180 37.535 0"],"time_start":"2020-03-25T00:00:00.000Z","updated":"2022-05-24T00:17:32.085Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-25T23:59:59.000Z","id":"G2276685260-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200325-000000-e20200325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.6 + 0.003 37.466 180","-37.6 -180 37.466 -0.001"],"time_start":"2020-03-26T00:00:02.000Z","updated":"2022-05-24T00:17:37.393Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-26T23:59:59.000Z","id":"G2276685276-POCLOUD","original_format":"UMM_JSON","granule_size":"20.502309799194336","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200326-000002-e20200326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0.002 37.473 180","-37.565 -180 37.473 0"],"time_start":"2020-03-27T00:00:01.000Z","updated":"2022-05-24T00:14:38.583Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-27T23:59:59.000Z","id":"G2276684753-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200327-000001-e20200327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.61 + 0.002 37.494 180","-37.61 -180 37.494 -0.002"],"time_start":"2020-03-28T00:00:01.000Z","updated":"2022-05-24T00:39:28.076Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-28T23:59:59.000Z","id":"G2276689550-POCLOUD","original_format":"UMM_JSON","granule_size":"19.75586223602295","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200328-000001-e20200328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.707 + 0 37.459 180","-37.707 -180 37.459 -0.002"],"time_start":"2020-03-29T00:00:00.000Z","updated":"2022-05-24T00:45:37.590Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-29T23:59:59.000Z","id":"G2276690288-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200329-000000-e20200329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.553 + 0.001 37.456 180","-37.553 -180 37.456 0"],"time_start":"2020-03-30T00:00:02.000Z","updated":"2022-05-24T00:21:42.759Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-30T23:59:59.000Z","id":"G2276685972-POCLOUD","original_format":"UMM_JSON","granule_size":"19.598671913146973","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200330-000002-e20200330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.559 + 0.001 37.305 180","-37.559 -180 37.305 0"],"time_start":"2020-03-31T00:00:01.000Z","updated":"2022-05-24T00:25:35.906Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-03-31T23:59:59.000Z","id":"G2276687002-POCLOUD","original_format":"UMM_JSON","granule_size":"19.38777256011963","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200331-000001-e20200331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.754 + 0.002 37.495 180","-37.754 -180 37.495 0"],"time_start":"2020-04-01T00:00:00.000Z","updated":"2022-05-24T00:19:31.179Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-01T23:59:59.000Z","id":"G2276685725-POCLOUD","original_format":"UMM_JSON","granule_size":"19.58590030670166","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200401-000000-e20200401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.64 + 0.001 37.502 180","-37.64 -180 37.502 -0.001"],"time_start":"2020-04-02T00:00:01.000Z","updated":"2022-05-24T00:12:29.836Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-02T23:59:59.000Z","id":"G2276683931-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200402-000001-e20200402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.732 + 0.003 37.528 180","-37.732 -180 37.528 0"],"time_start":"2020-04-03T00:00:01.000Z","updated":"2022-05-23T23:53:41.383Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-03T23:59:59.000Z","id":"G2276680338-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200403-000001-e20200403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.668 + 0 37.524 180","-37.668 -180 37.524 0"],"time_start":"2020-04-04T00:00:01.000Z","updated":"2022-05-24T00:03:32.534Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-04T23:59:59.000Z","id":"G2276682036-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200404-000001-e20200404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.69 + 0.001 37.638 180","-37.69 -180 37.638 -0.001"],"time_start":"2020-04-05T00:00:01.000Z","updated":"2022-05-24T00:20:37.042Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-05T23:59:59.000Z","id":"G2276685830-POCLOUD","original_format":"UMM_JSON","granule_size":"19.686829566955566","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200405-000001-e20200405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.685 + 0 37.545 180","-37.685 -180 37.545 0"],"time_start":"2020-04-06T00:00:02.000Z","updated":"2022-05-24T00:08:32.180Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-06T23:59:59.000Z","id":"G2276683594-POCLOUD","original_format":"UMM_JSON","granule_size":"19.6159725189209","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200406-000002-e20200406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.626 + 0.001 37.565 180","-37.626 -180 37.565 -0.002"],"time_start":"2020-04-07T00:00:02.000Z","updated":"2022-05-24T00:19:30.612Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-07T23:59:59.000Z","id":"G2276685724-POCLOUD","original_format":"UMM_JSON","granule_size":"19.551355361938477","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200407-000002-e20200407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.609 + 0.001 37.609 180","-37.609 -180 37.609 -0.003"],"time_start":"2020-04-08T00:00:01.000Z","updated":"2022-05-24T00:17:32.002Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-08T23:59:59.000Z","id":"G2276685262-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200408-000001-e20200408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.677 + 0.001 37.536 180","-37.677 -180 37.536 0"],"time_start":"2020-04-09T00:00:01.000Z","updated":"2022-05-24T00:39:29.154Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-09T23:59:59.000Z","id":"G2276689554-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200409-000001-e20200409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.834 + 0.001 37.545 180","-37.834 -180 37.545 -0.002"],"time_start":"2020-04-10T00:00:01.000Z","updated":"2022-05-24T00:15:42.481Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-10T23:59:59.000Z","id":"G2276685012-POCLOUD","original_format":"UMM_JSON","granule_size":"19.63617515563965","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200410-000001-e20200410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.882 + 0.001 37.717 180","-37.882 -180 37.717 -0.001"],"time_start":"2020-04-11T00:00:02.000Z","updated":"2022-05-24T00:15:37.759Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-11T23:59:59.000Z","id":"G2276685002-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200411-000002-e20200411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.956 + 0.001 37.719 180","-37.956 -180 37.719 -0.002"],"time_start":"2020-04-12T00:00:01.000Z","updated":"2022-05-24T00:48:29.517Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-12T23:59:59.000Z","id":"G2276692146-POCLOUD","original_format":"UMM_JSON","granule_size":"19.689022064208984","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200412-000001-e20200412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.757 + 0.003 37.649 180","-37.757 -180 37.649 -0.002"],"time_start":"2020-04-13T00:00:01.000Z","updated":"2022-05-23T23:49:31.607Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-13T23:59:59.000Z","id":"G2276679616-POCLOUD","original_format":"UMM_JSON","granule_size":"20.111114501953125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200413-000001-e20200413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0.001 37.632 180","-37.658 -180 37.632 -0.003"],"time_start":"2020-04-14T00:00:01.000Z","updated":"2022-05-24T00:05:13.342Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-14T23:59:59.000Z","id":"G2276682587-POCLOUD","original_format":"UMM_JSON","granule_size":"20.21957302093506","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200414-000001-e20200414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.657 + 0.002 37.566 180","-37.657 -180 37.566 -0.002"],"time_start":"2020-04-15T00:00:01.000Z","updated":"2022-05-23T23:48:33.188Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-15T23:59:59.000Z","id":"G2276679023-POCLOUD","original_format":"UMM_JSON","granule_size":"20.64515781402588","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200415-000001-e20200415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0.001 37.674 180","-37.632 -180 37.674 -0.002"],"time_start":"2020-04-16T00:00:01.000Z","updated":"2022-05-23T23:53:37.801Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-16T23:59:59.000Z","id":"G2276680335-POCLOUD","original_format":"UMM_JSON","granule_size":"20.45625400543213","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200416-000001-e20200416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.635 + 0.001 37.672 180","-37.635 -180 37.672 -0.001"],"time_start":"2020-04-17T00:00:01.000Z","updated":"2022-05-23T23:58:33.398Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-17T23:59:59.000Z","id":"G2276681293-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200417-000001-e20200417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.663 + 0.002 37.656 180","-37.663 -180 37.656 0"],"time_start":"2020-04-18T00:00:00.000Z","updated":"2022-05-24T00:33:36.811Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-18T23:59:59.000Z","id":"G2276688645-POCLOUD","original_format":"UMM_JSON","granule_size":"20.085424423217773","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200418-000000-e20200418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.691 + 0.001 37.687 180","-37.691 -180 37.687 -0.001"],"time_start":"2020-04-19T00:00:01.000Z","updated":"2022-05-24T00:16:32.018Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-19T23:59:59.000Z","id":"G2276685057-POCLOUD","original_format":"UMM_JSON","granule_size":"19.906055450439453","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200419-000001-e20200419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.799 + 0 37.692 180","-37.799 -180 37.692 0"],"time_start":"2020-04-20T00:00:01.000Z","updated":"2022-05-23T23:59:33.906Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-20T23:59:59.000Z","id":"G2276681348-POCLOUD","original_format":"UMM_JSON","granule_size":"19.938814163208008","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200420-000001-e20200420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.8 + 0.001 37.66 180","-37.8 -180 37.66 0"],"time_start":"2020-04-21T00:00:00.000Z","updated":"2022-05-23T23:57:33.400Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-21T23:59:59.000Z","id":"G2276680584-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200421-000000-e20200421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.786 + 0 37.703 180","-37.786 -180 37.703 -0.002"],"time_start":"2020-04-22T00:00:01.000Z","updated":"2022-05-24T00:47:44.359Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-22T23:59:59.000Z","id":"G2276691841-POCLOUD","original_format":"UMM_JSON","granule_size":"19.00700855255127","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200422-000001-e20200422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.696 + 0.001 37.723 180","-37.696 -180 37.723 0"],"time_start":"2020-04-23T00:00:02.000Z","updated":"2022-05-23T23:56:32.767Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-23T23:59:59.000Z","id":"G2276680511-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200423-000002-e20200423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.697 + 0.002 37.691 180","-37.697 -180 37.691 -0.002"],"time_start":"2020-04-24T00:00:01.000Z","updated":"2022-05-23T23:54:28.824Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-24T23:59:59.000Z","id":"G2276680357-POCLOUD","original_format":"UMM_JSON","granule_size":"16.976859092712402","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200424-000001-e20200424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.705 + 0.002 37.574 180","-37.705 -180 37.574 0"],"time_start":"2020-04-25T00:00:01.000Z","updated":"2022-05-24T00:28:37.853Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-25T23:59:59.000Z","id":"G2276687729-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200425-000001-e20200425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.001 37.772 180","-37.669 -180 37.772 -0.003"],"time_start":"2020-04-26T00:00:01.000Z","updated":"2022-05-23T23:55:33.742Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-26T23:59:59.000Z","id":"G2276680434-POCLOUD","original_format":"UMM_JSON","granule_size":"16.644070625305176","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200426-000001-e20200426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.666 + 0.001 37.736 180","-37.666 -180 37.736 -0.003"],"time_start":"2020-04-27T00:00:02.000Z","updated":"2022-05-23T23:55:38.858Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-27T23:59:59.000Z","id":"G2276680447-POCLOUD","original_format":"UMM_JSON","granule_size":"16.803261756896973","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200427-000002-e20200427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.639 + 0.003 37.765 180","-37.639 -180 37.765 0"],"time_start":"2020-04-28T00:00:01.000Z","updated":"2022-05-23T23:56:27.686Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-28T23:59:59.000Z","id":"G2276680498-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200428-000001-e20200428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.667 + 0.004 37.669 180","-37.667 -180 37.669 -0.001"],"time_start":"2020-04-29T00:00:00.000Z","updated":"2022-05-24T00:39:30.837Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-29T23:59:59.000Z","id":"G2276689560-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200429-000000-e20200429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.689 + 0.003 37.627 180","-37.689 -180 37.627 0"],"time_start":"2020-04-30T00:00:00.000Z","updated":"2022-05-24T00:28:34.410Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-04-30T23:59:59.000Z","id":"G2276687710-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200430-000000-e20200430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.662 + 0.001 37.71 180","-37.662 -180 37.71 -0.001"],"time_start":"2020-05-01T00:00:02.000Z","updated":"2022-05-23T23:50:40.135Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-01T23:59:59.000Z","id":"G2276679801-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200501-000002-e20200501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0.004 37.729 180","-37.75 -180 37.729 0"],"time_start":"2020-05-02T00:00:02.000Z","updated":"2022-05-24T00:06:33.310Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-02T23:59:59.000Z","id":"G2276682844-POCLOUD","original_format":"UMM_JSON","granule_size":"19.39713191986084","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200502-000002-e20200502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.714 + 0.002 37.721 180","-37.714 -180 37.721 -0.001"],"time_start":"2020-05-03T00:00:02.000Z","updated":"2022-05-24T00:32:32.612Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-03T23:59:59.000Z","id":"G2276688094-POCLOUD","original_format":"UMM_JSON","granule_size":"19.538471221923828","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200503-000002-e20200503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.748 + 0 37.744 180","-37.748 -180 37.744 -0.005"],"time_start":"2020-05-04T00:00:01.000Z","updated":"2022-05-24T00:12:47.622Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-04T23:59:59.000Z","id":"G2276684517-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200504-000001-e20200504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.836 + 0.001 37.737 180","-37.836 -180 37.737 -0.001"],"time_start":"2020-05-05T00:00:01.000Z","updated":"2022-05-24T00:10:39.748Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-05T23:59:59.000Z","id":"G2276683779-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200505-000001-e20200505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.861 + 0 37.777 180","-37.861 -180 37.777 -0.005"],"time_start":"2020-05-06T00:00:02.000Z","updated":"2022-05-23T23:51:09.748Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-06T23:59:59.000Z","id":"G2276679836-POCLOUD","original_format":"UMM_JSON","granule_size":"20.24539566040039","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200506-000002-e20200506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.827 + 0.001 37.661 180","-37.827 -180 37.661 -0.001"],"time_start":"2020-05-07T00:00:01.000Z","updated":"2022-05-24T00:32:43.955Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-07T23:59:59.000Z","id":"G2276688545-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200507-000001-e20200507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.817 + 0.002 37.739 180","-37.817 -180 37.739 -0.002"],"time_start":"2020-05-08T00:00:00.000Z","updated":"2022-05-23T23:59:35.501Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-08T23:59:59.000Z","id":"G2276681351-POCLOUD","original_format":"UMM_JSON","granule_size":"19.43599796295166","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200508-000000-e20200508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.735 + 0.001 37.606 180","-37.735 -180 37.606 -0.002"],"time_start":"2020-05-09T00:00:01.000Z","updated":"2022-05-24T00:31:33.771Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-09T23:59:59.000Z","id":"G2276688027-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200509-000001-e20200509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.553 + 0.003 37.621 180","-37.553 -180 37.621 -0.001"],"time_start":"2020-05-10T00:00:01.000Z","updated":"2022-05-24T00:26:31.500Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-10T23:59:59.000Z","id":"G2276687098-POCLOUD","original_format":"UMM_JSON","granule_size":"18.678272247314453","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200510-000001-e20200510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.593 + 0.001 37.515 180","-37.593 -180 37.515 -0.002"],"time_start":"2020-05-11T00:00:02.000Z","updated":"2022-05-23T23:54:36.669Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-11T23:59:59.000Z","id":"G2276680370-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200511-000002-e20200511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0.005 37.58 180","-37.641 -180 37.58 -0.001"],"time_start":"2020-05-12T00:00:01.000Z","updated":"2022-05-24T00:24:38.181Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-12T23:59:59.000Z","id":"G2276686882-POCLOUD","original_format":"UMM_JSON","granule_size":"18.081183433532715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200512-000001-e20200512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.755 + 0.002 37.683 180","-37.755 -180 37.683 -0.002"],"time_start":"2020-05-13T00:00:02.000Z","updated":"2022-05-24T00:04:24.375Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-13T23:59:59.000Z","id":"G2276682426-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200513-000002-e20200513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.753 + 0.003 37.628 180","-37.753 -180 37.628 0"],"time_start":"2020-05-14T00:00:02.000Z","updated":"2022-05-23T23:57:28.679Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-14T23:59:59.000Z","id":"G2276680568-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200514-000002-e20200514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.706 + 0.004 37.658 180","-37.706 -180 37.658 0"],"time_start":"2020-05-15T00:00:00.000Z","updated":"2022-05-23T23:53:33.311Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-15T23:59:59.000Z","id":"G2276680324-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200515-000000-e20200515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0.001 37.719 180","-37.741 -180 37.719 -0.004"],"time_start":"2020-05-16T00:00:01.000Z","updated":"2022-05-23T23:55:26.929Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-16T23:59:59.000Z","id":"G2276680421-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200516-000001-e20200516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.692 + 0 37.522 180","-37.692 -180 37.522 -0.005"],"time_start":"2020-05-17T00:00:02.000Z","updated":"2022-05-24T00:27:37.882Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-17T23:59:59.000Z","id":"G2276687402-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200517-000002-e20200517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.624 + 0.003 37.556 180","-37.624 -180 37.556 -0.001"],"time_start":"2020-05-18T00:00:01.000Z","updated":"2022-05-24T00:46:32.908Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-18T23:59:58.000Z","id":"G2276690912-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200518-000001-e20200518-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.546 + 0 37.639 180","-37.546 -180 37.639 0"],"time_start":"2020-05-19T00:00:01.000Z","updated":"2022-05-24T00:11:27.060Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-19T23:59:59.000Z","id":"G2276683819-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200519-000001-e20200519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.593 + 0 37.585 180","-37.593 -180 37.585 -0.001"],"time_start":"2020-05-20T00:00:02.000Z","updated":"2022-05-24T00:40:33.605Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-20T23:59:59.000Z","id":"G2276689623-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200520-000002-e20200520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.614 + 0.003 37.513 180","-37.614 -180 37.513 -0.008"],"time_start":"2020-05-21T00:00:01.000Z","updated":"2022-05-24T00:04:42.525Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-21T23:59:59.000Z","id":"G2276682474-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200521-000001-e20200521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.597 + 0.002 37.541 180","-37.597 -180 37.541 -0.002"],"time_start":"2020-05-22T00:00:02.000Z","updated":"2022-05-24T00:47:38.820Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-22T23:59:59.000Z","id":"G2276691787-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200522-000002-e20200522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.564 + 0 37.533 180","-37.564 -180 37.533 -0.001"],"time_start":"2020-05-23T00:00:01.000Z","updated":"2022-05-24T00:22:37.002Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-23T23:59:59.000Z","id":"G2276686575-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200523-000001-e20200523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.509 + 0.002 37.44 180","-37.509 -180 37.44 -0.001"],"time_start":"2020-05-24T00:00:02.000Z","updated":"2022-05-24T00:09:37.774Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-24T23:59:59.000Z","id":"G2276683700-POCLOUD","original_format":"UMM_JSON","granule_size":"16.846169471740723","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200524-000002-e20200524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.462 + 0.001 37.516 180","-37.462 -180 37.516 -0.003"],"time_start":"2020-05-25T00:00:02.000Z","updated":"2022-05-24T00:08:28.706Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-25T23:59:59.000Z","id":"G2276683586-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200525-000002-e20200525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.473 + 0 37.405 180","-37.473 -180 37.405 -0.001"],"time_start":"2020-05-26T00:00:02.000Z","updated":"2022-05-24T00:17:32.869Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-26T23:59:59.000Z","id":"G2276685264-POCLOUD","original_format":"UMM_JSON","granule_size":"16.632481575012207","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200526-000002-e20200526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.042 + 0 37.425 180","-38.042 -180 37.425 -0.005"],"time_start":"2020-05-27T00:00:02.000Z","updated":"2022-05-24T00:22:59.969Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-27T23:59:59.000Z","id":"G2276686642-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200527-000002-e20200527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.544 + 0 37.336 180","-37.544 -180 37.336 -0.002"],"time_start":"2020-05-28T00:00:01.000Z","updated":"2022-05-24T00:30:30.836Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-28T23:59:59.000Z","id":"G2276687921-POCLOUD","original_format":"UMM_JSON","granule_size":"16.105518341064453","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200528-000001-e20200528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.574 + 0.001 37.492 180","-37.574 -180 37.492 -0.002"],"time_start":"2020-05-29T00:00:02.000Z","updated":"2022-05-23T23:47:31.497Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-29T23:59:59.000Z","id":"G2276677579-POCLOUD","original_format":"UMM_JSON","granule_size":"16.838900566101074","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200529-000002-e20200529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.955 + 0.001 37.534 180","-37.955 -180 37.534 -0.001"],"time_start":"2020-05-30T00:00:01.000Z","updated":"2022-05-24T00:32:44.997Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-30T23:59:59.000Z","id":"G2276688546-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200530-000001-e20200530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.768 + 0.002 37.573 180","-37.768 -180 37.573 -0.001"],"time_start":"2020-05-31T00:00:00.000Z","updated":"2022-05-24T00:05:11.419Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-05-31T23:59:59.000Z","id":"G2276682584-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200531-000000-e20200531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.691 + 0.002 37.564 180","-37.691 -180 37.564 -0.001"],"time_start":"2020-06-01T00:00:01.000Z","updated":"2022-05-24T00:23:28.770Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-01T23:59:59.000Z","id":"G2276686670-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200601-000001-e20200601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.612 + 0 37.631 180","-37.612 -180 37.631 -0.001"],"time_start":"2020-06-02T00:00:00.000Z","updated":"2022-05-24T00:22:37.316Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-02T23:59:59.000Z","id":"G2276686574-POCLOUD","original_format":"UMM_JSON","granule_size":"16.89443874359131","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200602-000000-e20200602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.637 + 0.001 37.518 180","-37.637 -180 37.518 -0.001"],"time_start":"2020-06-03T00:00:02.000Z","updated":"2022-05-24T00:43:38.910Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-03T23:59:59.000Z","id":"G2276690110-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200603-000002-e20200603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.714 + 0.001 37.656 180","-38.714 -180 37.656 -0.002"],"time_start":"2020-06-04T00:00:01.000Z","updated":"2022-05-24T00:27:37.787Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-04T23:59:59.000Z","id":"G2276687387-POCLOUD","original_format":"UMM_JSON","granule_size":"18.025129318237305","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200604-000001-e20200604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.727 + 0.005 37.5 180","-39.727 -180 37.5 0"],"time_start":"2020-06-05T00:00:02.000Z","updated":"2022-05-24T00:02:33.577Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-05T23:59:59.000Z","id":"G2276681626-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200605-000002-e20200605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.423 + 0.005 37.648 180","-37.423 -180 37.648 -0.002"],"time_start":"2020-06-06T00:00:00.000Z","updated":"2022-05-24T00:29:41.095Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-06T23:59:59.000Z","id":"G2276687858-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200606-000000-e20200606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.472 + 0.001 37.55 180","-37.472 -180 37.55 -0.002"],"time_start":"2020-06-07T00:00:01.000Z","updated":"2022-05-24T00:33:46.500Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-07T23:59:59.000Z","id":"G2276688663-POCLOUD","original_format":"UMM_JSON","granule_size":"16.845170974731445","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200607-000001-e20200607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0.002 37.71 180","-37.641 -180 37.71 0"],"time_start":"2020-06-08T00:00:02.000Z","updated":"2022-05-24T00:09:43.194Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-08T23:59:59.000Z","id":"G2276683717-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200608-000002-e20200608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.724 + 0.001 37.778 180","-37.724 -180 37.778 -0.001"],"time_start":"2020-06-09T00:00:02.000Z","updated":"2022-05-24T00:14:56.232Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-09T23:59:59.000Z","id":"G2276684838-POCLOUD","original_format":"UMM_JSON","granule_size":"19.36940288543701","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200609-000002-e20200609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.776 + 0 37.639 180","-37.776 -180 37.639 -0.001"],"time_start":"2020-06-10T00:00:01.000Z","updated":"2022-05-24T00:33:26.674Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-10T23:59:59.000Z","id":"G2276688625-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200610-000001-e20200610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.764 + 0.004 37.716 180","-37.764 -180 37.716 -0.002"],"time_start":"2020-06-11T00:00:01.000Z","updated":"2022-05-24T00:06:37.376Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-11T23:59:59.000Z","id":"G2276682856-POCLOUD","original_format":"UMM_JSON","granule_size":"20.001094818115234","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200611-000001-e20200611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.002 37.697 180","-37.669 -180 37.697 -0.001"],"time_start":"2020-06-12T00:00:01.000Z","updated":"2022-05-24T00:13:29.752Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-12T23:59:59.000Z","id":"G2276684580-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200612-000001-e20200612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.613 + 0 37.634 180","-37.613 -180 37.634 0"],"time_start":"2020-06-13T00:00:01.000Z","updated":"2022-05-23T23:54:28.853Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-13T23:59:59.000Z","id":"G2276680358-POCLOUD","original_format":"UMM_JSON","granule_size":"20.275654792785645","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200613-000001-e20200613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.684 + 0.001 37.6 180","-37.684 -180 37.6 -0.003"],"time_start":"2020-06-14T00:00:01.000Z","updated":"2022-05-23T23:48:46.469Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-14T23:59:59.000Z","id":"G2276679039-POCLOUD","original_format":"UMM_JSON","granule_size":"20.057515144348145","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200614-000001-e20200614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.916 + 0.001 37.584 180","-37.916 -180 37.584 -0.003"],"time_start":"2020-06-15T00:00:02.000Z","updated":"2022-05-24T00:08:38.933Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-15T23:59:59.000Z","id":"G2276683620-POCLOUD","original_format":"UMM_JSON","granule_size":"19.71868133544922","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200615-000002-e20200615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.774 + 0 37.58 180","-37.774 -180 37.58 0"],"time_start":"2020-06-16T00:00:01.000Z","updated":"2022-05-24T00:35:37.074Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-16T23:59:59.000Z","id":"G2276688814-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200616-000001-e20200616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.863 + 0.001 37.826 180","-37.863 -180 37.826 -0.003"],"time_start":"2020-06-17T00:00:01.000Z","updated":"2022-05-23T23:50:34.679Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-17T23:59:59.000Z","id":"G2276679775-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200617-000001-e20200617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.844 + 0.005 37.732 180","-37.844 -180 37.732 -0.003"],"time_start":"2020-06-18T00:00:01.000Z","updated":"2022-05-23T23:50:39.319Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-18T23:59:59.000Z","id":"G2276679792-POCLOUD","original_format":"UMM_JSON","granule_size":"16.99362277984619","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200618-000001-e20200618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.879 + 0.004 37.732 180","-37.879 -180 37.732 -0.008"],"time_start":"2020-06-19T00:00:00.000Z","updated":"2022-05-24T00:07:32.011Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-19T23:59:59.000Z","id":"G2276683495-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200619-000000-e20200619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.881 + 0.001 37.669 180","-37.881 -180 37.669 0"],"time_start":"2020-06-20T00:00:01.000Z","updated":"2022-05-24T00:35:37.178Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-20T23:59:59.000Z","id":"G2276688813-POCLOUD","original_format":"UMM_JSON","granule_size":"17.450578689575195","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200620-000001-e20200620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.754 + 0 37.621 180","-37.754 -180 37.621 0"],"time_start":"2020-06-21T00:00:02.000Z","updated":"2022-05-24T00:02:33.462Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-21T23:59:59.000Z","id":"G2276681624-POCLOUD","original_format":"UMM_JSON","granule_size":"17.109713554382324","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200621-000002-e20200621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.728 + 0 37.72 180","-37.728 -180 37.72 -0.001"],"time_start":"2020-06-22T00:00:01.000Z","updated":"2022-05-24T00:44:43.382Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-22T23:59:59.000Z","id":"G2276690221-POCLOUD","original_format":"UMM_JSON","granule_size":"19.15390396118164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200622-000001-e20200622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.783 + 0.003 37.728 180","-37.783 -180 37.728 -0.001"],"time_start":"2020-06-23T00:00:02.000Z","updated":"2022-05-23T23:51:32.096Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-23T23:59:59.000Z","id":"G2276679868-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200623-000002-e20200623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.811 + 0.002 37.681 180","-37.811 -180 37.681 -0.001"],"time_start":"2020-06-24T00:00:01.000Z","updated":"2022-05-24T00:03:35.425Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-24T23:59:59.000Z","id":"G2276682053-POCLOUD","original_format":"UMM_JSON","granule_size":"16.097124099731445","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200624-000001-e20200624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.756 + 0.001 37.727 180","-37.756 -180 37.727 -0.001"],"time_start":"2020-06-25T00:00:01.000Z","updated":"2022-05-24T00:42:38.106Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-25T23:59:59.000Z","id":"G2276690016-POCLOUD","original_format":"UMM_JSON","granule_size":"17.435138702392578","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200625-000001-e20200625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.758 + 0.003 37.633 180","-37.758 -180 37.633 0"],"time_start":"2020-06-26T00:00:01.000Z","updated":"2022-05-24T00:15:33.518Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-26T23:59:59.000Z","id":"G2276684995-POCLOUD","original_format":"UMM_JSON","granule_size":"14.07551383972168","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200626-000001-e20200626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.737 + 0.001 37.711 180","-37.737 -180 37.711 -0.001"],"time_start":"2020-06-27T00:00:00.000Z","updated":"2022-05-24T00:14:30.361Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-27T23:59:58.000Z","id":"G2276684756-POCLOUD","original_format":"UMM_JSON","granule_size":"13.843316078186035","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200627-000000-e20200627-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.784 + 0.004 37.654 180","-37.784 -180 37.654 0"],"time_start":"2020-06-28T00:00:01.000Z","updated":"2022-05-23T23:51:35.587Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-28T23:59:59.000Z","id":"G2276679884-POCLOUD","original_format":"UMM_JSON","granule_size":"19.59011745452881","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200628-000001-e20200628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.001 37.704 180","-37.769 -180 37.704 -0.001"],"time_start":"2020-06-29T00:00:01.000Z","updated":"2022-05-24T00:30:34.768Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-29T23:59:59.000Z","id":"G2276687945-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200629-000001-e20200629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0 37.677 180","-37.747 -180 37.677 -0.001"],"time_start":"2020-06-30T00:00:02.000Z","updated":"2022-05-24T00:12:44.680Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-06-30T23:59:59.000Z","id":"G2276684518-POCLOUD","original_format":"UMM_JSON","granule_size":"19.88157844543457","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200630-000002-e20200630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.774 + 0 37.748 180","-37.774 -180 37.748 -0.002"],"time_start":"2020-07-01T00:00:01.000Z","updated":"2022-05-24T00:02:30.346Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-01T23:59:59.000Z","id":"G2276681614-POCLOUD","original_format":"UMM_JSON","granule_size":"19.84309959411621","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200701-000001-e20200701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.677 + 0.004 37.789 180","-37.677 -180 37.789 0"],"time_start":"2020-07-02T00:00:00.000Z","updated":"2022-05-24T00:19:35.258Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-02T23:59:59.000Z","id":"G2276685751-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200702-000000-e20200702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.729 + 0 37.808 180","-37.729 -180 37.808 -0.002"],"time_start":"2020-07-03T00:00:01.000Z","updated":"2022-05-24T00:04:44.843Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-03T23:59:59.000Z","id":"G2276682476-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200703-000001-e20200703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0 37.658 180","-37.769 -180 37.658 -0.001"],"time_start":"2020-07-04T00:00:00.000Z","updated":"2022-05-24T00:05:30.457Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-04T23:59:59.000Z","id":"G2276682620-POCLOUD","original_format":"UMM_JSON","granule_size":"19.69458293914795","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200704-000000-e20200704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.804 + 0 37.768 180","-37.804 -180 37.768 -0.002"],"time_start":"2020-07-05T00:00:01.000Z","updated":"2022-05-23T23:48:30.837Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-05T23:59:59.000Z","id":"G2276679002-POCLOUD","original_format":"UMM_JSON","granule_size":"19.73564910888672","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200705-000001-e20200705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.675 + 0.001 37.673 180","-37.675 -180 37.673 -0.001"],"time_start":"2020-07-06T00:00:02.000Z","updated":"2022-05-24T00:28:31.559Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-06T23:59:59.000Z","id":"G2276687702-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200706-000002-e20200706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.491 + 0 37.684 180","-37.491 -180 37.684 -0.001"],"time_start":"2020-07-07T00:00:00.000Z","updated":"2022-05-24T00:48:38.839Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-07T23:59:59.000Z","id":"G2276692140-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200707-000000-e20200707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.509 + 0.001 37.526 180","-37.509 -180 37.526 -0.002"],"time_start":"2020-07-08T00:00:01.000Z","updated":"2022-05-24T00:09:30.566Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-08T23:59:59.000Z","id":"G2276683682-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200708-000001-e20200708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.485 + 0 37.612 180","-37.485 -180 37.612 0"],"time_start":"2020-07-09T00:00:01.000Z","updated":"2022-05-24T00:17:28.696Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-09T23:59:59.000Z","id":"G2276685257-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200709-000001-e20200709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.66 + 0.001 37.692 180","-37.66 -180 37.692 -0.001"],"time_start":"2020-07-10T00:00:01.000Z","updated":"2022-05-23T23:49:32.560Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-10T23:59:59.000Z","id":"G2276679622-POCLOUD","original_format":"UMM_JSON","granule_size":"19.527403831481934","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200710-000001-e20200710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.665 + 0 37.756 180","-37.665 -180 37.756 0"],"time_start":"2020-07-11T00:00:02.000Z","updated":"2022-05-24T00:03:30.294Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-11T23:59:59.000Z","id":"G2276682034-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200711-000002-e20200711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.666 + 0.003 37.752 180","-37.666 -180 37.752 -0.002"],"time_start":"2020-07-12T00:00:01.000Z","updated":"2022-05-24T00:19:35.293Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-12T23:59:59.000Z","id":"G2276685739-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200712-000001-e20200712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.563 + 0.002 37.785 180","-37.563 -180 37.785 -0.001"],"time_start":"2020-07-13T00:00:00.000Z","updated":"2022-05-23T23:50:33.125Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-13T23:59:58.000Z","id":"G2276679787-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200713-000000-e20200713-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.668 + 0.002 37.699 180","-37.668 -180 37.699 -0.003"],"time_start":"2020-07-14T00:00:01.000Z","updated":"2022-05-24T00:43:35.037Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-14T23:59:59.000Z","id":"G2276690102-POCLOUD","original_format":"UMM_JSON","granule_size":"16.805356979370117","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200714-000001-e20200714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.915 + 0.001 37.617 180","-37.915 -180 37.617 -0.003"],"time_start":"2020-07-15T00:00:01.000Z","updated":"2022-05-24T00:05:38.236Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-15T23:59:59.000Z","id":"G2276682654-POCLOUD","original_format":"UMM_JSON","granule_size":"18.353675842285156","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200715-000001-e20200715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.315 + 0.003 37.458 180","-38.315 -180 37.458 0"],"time_start":"2020-07-16T00:00:02.000Z","updated":"2022-05-23T23:59:32.842Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-16T23:59:59.000Z","id":"G2276681345-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200716-000002-e20200716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.372 + 0 37.508 180","-38.372 -180 37.508 0"],"time_start":"2020-07-17T00:00:01.000Z","updated":"2022-05-24T00:31:34.632Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-17T23:59:59.000Z","id":"G2276688031-POCLOUD","original_format":"UMM_JSON","granule_size":"16.305581092834473","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200717-000001-e20200717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.63 + 0.003 37.565 180","-37.63 -180 37.565 0"],"time_start":"2020-07-18T00:00:01.000Z","updated":"2022-05-24T00:25:35.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-18T23:59:59.000Z","id":"G2276687001-POCLOUD","original_format":"UMM_JSON","granule_size":"16.194457054138184","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200718-000001-e20200718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.602 + 0 37.522 180","-37.602 -180 37.522 -0.001"],"time_start":"2020-07-19T00:00:02.000Z","updated":"2022-05-24T00:41:40.555Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-19T23:59:59.000Z","id":"G2276689689-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200719-000002-e20200719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.566 + 0.001 37.421 180","-37.566 -180 37.421 -0.001"],"time_start":"2020-07-20T00:00:01.000Z","updated":"2022-05-24T00:45:34.036Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-20T23:59:59.000Z","id":"G2276690276-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200720-000001-e20200720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.518 + 0.002 37.446 180","-37.518 -180 37.446 -0.004"],"time_start":"2020-07-21T00:00:01.000Z","updated":"2022-05-24T00:37:35.233Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-21T23:59:59.000Z","id":"G2276688935-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200721-000001-e20200721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.667 + 0 37.437 180","-37.667 -180 37.437 -0.003"],"time_start":"2020-07-22T00:00:01.000Z","updated":"2022-05-24T00:44:28.338Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-22T23:59:59.000Z","id":"G2276690177-POCLOUD","original_format":"UMM_JSON","granule_size":"15.693264961242676","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200722-000001-e20200722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.502 + 0.001 37.448 180","-38.502 -180 37.448 -0.01"],"time_start":"2020-07-23T00:00:01.000Z","updated":"2022-05-24T00:42:40.293Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-23T23:59:59.000Z","id":"G2276690032-POCLOUD","original_format":"UMM_JSON","granule_size":"15.596573829650879","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200723-000001-e20200723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.524 + 0 37.368 180","-37.524 -180 37.368 -0.001"],"time_start":"2020-07-24T00:00:01.000Z","updated":"2022-05-23T23:49:42.164Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-24T23:59:59.000Z","id":"G2276679656-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200724-000001-e20200724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.54 + 0 37.464 180","-37.54 -180 37.464 -0.001"],"time_start":"2020-07-25T00:00:01.000Z","updated":"2022-05-24T00:03:36.365Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-25T23:59:59.000Z","id":"G2276682054-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200725-000001-e20200725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.585 + 0 37.413 180","-37.585 -180 37.413 0"],"time_start":"2020-07-26T00:00:02.000Z","updated":"2022-05-24T00:24:33.914Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-26T23:59:59.000Z","id":"G2276686863-POCLOUD","original_format":"UMM_JSON","granule_size":"17.55791473388672","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200726-000002-e20200726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.708 + 0 37.447 180","-37.708 -180 37.447 0"],"time_start":"2020-07-27T00:00:01.000Z","updated":"2022-05-24T00:10:28.182Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-27T23:59:59.000Z","id":"G2276683739-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200727-000001-e20200727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.612 + 0 37.519 180","-37.612 -180 37.519 -0.001"],"time_start":"2020-07-28T00:00:01.000Z","updated":"2022-05-24T00:13:27.118Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-28T23:59:59.000Z","id":"G2276684574-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200728-000001-e20200728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.571 + 0.003 37.614 180","-37.571 -180 37.614 -0.003"],"time_start":"2020-07-29T00:00:01.000Z","updated":"2022-05-23T23:47:58.636Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-29T23:56:26.000Z","id":"G2276678420-POCLOUD","original_format":"UMM_JSON","granule_size":"10.615735054016113","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200729-000001-e20200729-235626.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.64 + 0 37.612 180","-37.64 -180 37.612 -0.002"],"time_start":"2020-07-30T00:00:01.000Z","updated":"2022-05-24T00:20:27.404Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-30T23:59:59.000Z","id":"G2276685801-POCLOUD","original_format":"UMM_JSON","granule_size":"14.224902153015137","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200730-000001-e20200730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.639 + 0.001 37.586 180","-37.639 -180 37.586 0"],"time_start":"2020-07-31T00:00:01.000Z","updated":"2022-05-24T00:27:33.028Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-07-31T23:59:59.000Z","id":"G2276687221-POCLOUD","original_format":"UMM_JSON","granule_size":"19.2356538772583","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200731-000001-e20200731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.606 + 0.001 37.491 180","-37.606 -180 37.491 -0.006"],"time_start":"2020-08-01T00:00:01.000Z","updated":"2022-05-23T23:58:31.168Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-01T23:59:59.000Z","id":"G2276681285-POCLOUD","original_format":"UMM_JSON","granule_size":"19.248560905456543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200801-000001-e20200801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.617 + 0 37.547 180","-37.617 -180 37.547 -0.001"],"time_start":"2020-08-02T00:00:01.000Z","updated":"2022-05-24T00:49:39.739Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-02T23:59:59.000Z","id":"G2276692789-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200802-000001-e20200802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.577 + 0 37.462 180","-37.577 -180 37.462 -0.001"],"time_start":"2020-08-03T00:00:01.000Z","updated":"2022-05-24T00:43:33.610Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-03T23:59:59.000Z","id":"G2276690098-POCLOUD","original_format":"UMM_JSON","granule_size":"19.033849716186523","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200803-000001-e20200803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.72 + 0.001 37.423 180","-37.72 -180 37.423 0"],"time_start":"2020-08-04T00:00:01.000Z","updated":"2022-05-24T00:17:34.940Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-04T23:59:59.000Z","id":"G2276685269-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200804-000001-e20200804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.727 + 0 37.661 180","-37.727 -180 37.661 -0.001"],"time_start":"2020-08-05T00:00:01.000Z","updated":"2022-05-24T00:36:37.744Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-05T23:59:59.000Z","id":"G2276688882-POCLOUD","original_format":"UMM_JSON","granule_size":"18.544462203979492","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200805-000001-e20200805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.792 + 0.001 37.727 180","-37.792 -180 37.727 -0.001"],"time_start":"2020-08-06T00:00:01.000Z","updated":"2022-05-24T00:34:27.691Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-06T23:59:59.000Z","id":"G2276688708-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200806-000001-e20200806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.737 + 0.002 37.744 180","-37.737 -180 37.744 0"],"time_start":"2020-08-07T00:00:01.000Z","updated":"2022-05-24T00:45:31.541Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-07T23:59:59.000Z","id":"G2276690254-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200807-000001-e20200807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.694 + 0.003 37.689 180","-37.694 -180 37.689 0"],"time_start":"2020-08-08T00:00:01.000Z","updated":"2022-05-23T23:59:44.464Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-08T23:59:59.000Z","id":"G2276681378-POCLOUD","original_format":"UMM_JSON","granule_size":"19.693683624267578","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200808-000001-e20200808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0.002 37.672 180","-37.658 -180 37.672 0"],"time_start":"2020-08-09T00:00:01.000Z","updated":"2022-05-24T00:48:39.539Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-09T23:59:59.000Z","id":"G2276692144-POCLOUD","original_format":"UMM_JSON","granule_size":"19.77352809906006","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200809-000001-e20200809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.635 + 0.001 37.669 180","-37.635 -180 37.669 -0.001"],"time_start":"2020-08-10T00:00:00.000Z","updated":"2022-05-24T00:30:34.870Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-10T23:59:59.000Z","id":"G2276687940-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200810-000000-e20200810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0.001 37.642 180","-37.638 -180 37.642 -0.003"],"time_start":"2020-08-11T00:00:00.000Z","updated":"2022-05-24T00:01:34.021Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-11T23:59:59.000Z","id":"G2276681549-POCLOUD","original_format":"UMM_JSON","granule_size":"19.59005641937256","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200811-000000-e20200811-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0.001 37.656 180","-37.65 -180 37.656 -0.002"],"time_start":"2020-08-12T00:00:00.000Z","updated":"2022-05-23T23:56:32.401Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-12T23:59:59.000Z","id":"G2276680528-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200812-000000-e20200812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0 37.697 180","-37.616 -180 37.697 0"],"time_start":"2020-08-13T00:00:02.000Z","updated":"2022-05-24T00:02:37.655Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-13T23:59:59.000Z","id":"G2276681632-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200813-000002-e20200813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.778 + 0 37.791 180","-37.778 -180 37.791 0"],"time_start":"2020-08-14T00:00:01.000Z","updated":"2022-05-24T00:01:31.770Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-14T23:59:59.000Z","id":"G2276681542-POCLOUD","original_format":"UMM_JSON","granule_size":"19.39341449737549","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200814-000001-e20200814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.783 + 0.002 37.801 180","-37.783 -180 37.801 -0.004"],"time_start":"2020-08-15T00:00:02.000Z","updated":"2022-05-23T23:52:34.716Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-15T23:59:59.000Z","id":"G2276680260-POCLOUD","original_format":"UMM_JSON","granule_size":"19.08522319793701","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200815-000002-e20200815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.793 + 0 37.75 180","-37.793 -180 37.75 -0.001"],"time_start":"2020-08-16T00:00:01.000Z","updated":"2022-05-24T00:38:41.527Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-16T23:59:59.000Z","id":"G2276689517-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200816-000001-e20200816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.698 + 0 37.773 180","-37.698 -180 37.773 -0.004"],"time_start":"2020-08-17T00:00:01.000Z","updated":"2022-05-23T23:55:34.406Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-17T23:59:59.000Z","id":"G2276680437-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200817-000001-e20200817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.716 + 0.001 37.785 180","-37.716 -180 37.785 0"],"time_start":"2020-08-18T00:00:01.000Z","updated":"2022-05-24T00:42:38.677Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-18T23:59:59.000Z","id":"G2276690026-POCLOUD","original_format":"UMM_JSON","granule_size":"20.09016513824463","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200818-000001-e20200818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.663 + 0 37.698 180","-37.663 -180 37.698 0"],"time_start":"2020-08-19T00:00:00.000Z","updated":"2022-05-24T00:19:39.505Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-19T23:59:59.000Z","id":"G2276685761-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200819-000000-e20200819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.657 + 0.006 37.778 180","-37.657 -180 37.778 -0.001"],"time_start":"2020-08-20T00:00:01.000Z","updated":"2022-05-24T00:25:30.311Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-20T23:59:59.000Z","id":"G2276686977-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200820-000001-e20200820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.584 + 0.002 37.627 180","-37.584 -180 37.627 -0.004"],"time_start":"2020-08-21T00:00:01.000Z","updated":"2022-05-24T00:45:38.327Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-21T23:59:58.000Z","id":"G2276690319-POCLOUD","original_format":"UMM_JSON","granule_size":"17.56441879272461","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200821-000001-e20200821-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.692 + 0 37.73 180","-37.692 -180 37.73 -0.002"],"time_start":"2020-08-22T00:00:02.000Z","updated":"2022-05-24T00:38:30.358Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-22T23:59:59.000Z","id":"G2276689502-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200822-000002-e20200822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.618 + 0.001 37.765 180","-37.618 -180 37.765 -0.003"],"time_start":"2020-08-23T00:00:01.000Z","updated":"2022-05-24T00:44:41.632Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-23T23:59:59.000Z","id":"G2276690218-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200823-000001-e20200823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.739 + 0.002 37.758 180","-37.739 -180 37.758 -0.001"],"time_start":"2020-08-24T00:00:01.000Z","updated":"2022-05-23T23:51:32.601Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-24T23:59:59.000Z","id":"G2276679867-POCLOUD","original_format":"UMM_JSON","granule_size":"17.456945419311523","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200824-000001-e20200824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.751 + 0 37.751 180","-37.751 -180 37.751 -0.008"],"time_start":"2020-08-25T00:00:02.000Z","updated":"2022-05-24T00:21:37.014Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-25T23:59:59.000Z","id":"G2276685931-POCLOUD","original_format":"UMM_JSON","granule_size":"17.64989948272705","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200825-000002-e20200825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.726 + 0.001 37.711 180","-37.726 -180 37.711 -0.002"],"time_start":"2020-08-26T00:00:01.000Z","updated":"2022-05-24T00:16:32.481Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-26T23:59:59.000Z","id":"G2276685053-POCLOUD","original_format":"UMM_JSON","granule_size":"18.93953227996826","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200826-000001-e20200826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0.001 37.661 180","-37.65 -180 37.661 -0.001"],"time_start":"2020-08-27T00:00:02.000Z","updated":"2022-05-24T00:12:31.494Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-27T23:59:59.000Z","id":"G2276683937-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200827-000002-e20200827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.718 + 0.001 37.677 180","-37.718 -180 37.677 -0.003"],"time_start":"2020-08-28T00:00:01.000Z","updated":"2022-05-24T00:38:32.235Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-28T23:59:59.000Z","id":"G2276689509-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200828-000001-e20200828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.76 + 0.001 37.64 180","-37.76 -180 37.64 0"],"time_start":"2020-08-29T00:00:01.000Z","updated":"2022-05-23T23:48:29.037Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-29T23:59:59.000Z","id":"G2276678940-POCLOUD","original_format":"UMM_JSON","granule_size":"18.805435180664062","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200829-000001-e20200829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.821 + 0.004 37.741 180","-37.821 -180 37.741 0"],"time_start":"2020-08-30T00:00:02.000Z","updated":"2022-05-24T00:06:30.117Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-30T23:59:59.000Z","id":"G2276682842-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200830-000002-e20200830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.743 + 0.003 37.667 180","-37.743 -180 37.667 0"],"time_start":"2020-08-31T00:00:01.000Z","updated":"2022-05-24T00:12:29.015Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-08-31T23:59:59.000Z","id":"G2276683934-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200831-000001-e20200831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.74 + 0.002 37.75 180","-37.74 -180 37.75 -0.001"],"time_start":"2020-09-01T00:00:01.000Z","updated":"2022-05-24T00:30:38.822Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-01T23:59:59.000Z","id":"G2276687951-POCLOUD","original_format":"UMM_JSON","granule_size":"18.753233909606934","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200901-000001-e20200901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0 37.711 180","-37.75 -180 37.711 -0.003"],"time_start":"2020-09-02T00:00:02.000Z","updated":"2022-05-24T00:15:29.817Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-02T23:59:59.000Z","id":"G2276684976-POCLOUD","original_format":"UMM_JSON","granule_size":"18.600394248962402","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200902-000002-e20200902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.63 + 0 37.59 180","-37.63 -180 37.59 -0.006"],"time_start":"2020-09-03T00:00:02.000Z","updated":"2022-05-24T00:13:29.950Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-03T23:59:59.000Z","id":"G2276684583-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200903-000002-e20200903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.543 + 0.001 37.567 180","-37.543 -180 37.567 -0.002"],"time_start":"2020-09-04T00:00:00.000Z","updated":"2022-05-24T00:13:34.134Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-04T23:59:59.000Z","id":"G2276684598-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200904-000000-e20200904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.627 + 0 37.533 180","-37.627 -180 37.533 -0.001"],"time_start":"2020-09-05T00:00:02.000Z","updated":"2022-05-24T00:39:27.958Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-05T23:59:59.000Z","id":"G2276689552-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200905-000002-e20200905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.628 + 0.002 37.598 180","-37.628 -180 37.598 -0.001"],"time_start":"2020-09-06T00:00:01.000Z","updated":"2022-05-24T00:21:40.850Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-06T23:59:59.000Z","id":"G2276685944-POCLOUD","original_format":"UMM_JSON","granule_size":"18.95820903778076","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200906-000001-e20200906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.759 + 0.004 37.593 180","-37.759 -180 37.593 0"],"time_start":"2020-09-07T00:00:01.000Z","updated":"2022-05-24T00:10:27.778Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-07T23:59:59.000Z","id":"G2276683741-POCLOUD","original_format":"UMM_JSON","granule_size":"19.12533950805664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200907-000001-e20200907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.809 + 0.001 37.666 180","-37.809 -180 37.666 -0.006"],"time_start":"2020-09-08T00:00:01.000Z","updated":"2022-05-24T00:23:32.258Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-08T23:59:59.000Z","id":"G2276686674-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200908-000001-e20200908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.795 + 0.001 37.685 180","-37.795 -180 37.685 -0.002"],"time_start":"2020-09-09T00:00:00.000Z","updated":"2022-05-24T00:12:26.679Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-09T23:59:59.000Z","id":"G2276683926-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200909-000000-e20200909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.725 + 0.002 37.666 180","-37.725 -180 37.666 -0.001"],"time_start":"2020-09-10T00:00:02.000Z","updated":"2022-05-24T00:45:30.237Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-10T23:59:59.000Z","id":"G2276690252-POCLOUD","original_format":"UMM_JSON","granule_size":"18.769753456115723","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200910-000002-e20200910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.546 + 0 37.616 180","-37.546 -180 37.616 -0.003"],"time_start":"2020-09-11T00:00:02.000Z","updated":"2022-05-24T00:03:28.241Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-11T23:59:59.000Z","id":"G2276682033-POCLOUD","original_format":"UMM_JSON","granule_size":"18.735692977905273","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200911-000002-e20200911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0.001 37.514 180","-37.616 -180 37.514 -0.001"],"time_start":"2020-09-12T00:00:01.000Z","updated":"2022-05-24T00:17:44.401Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-12T23:59:59.000Z","id":"G2276685286-POCLOUD","original_format":"UMM_JSON","granule_size":"18.802756309509277","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200912-000001-e20200912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.627 + 0.001 37.615 180","-37.627 -180 37.615 -0.001"],"time_start":"2020-09-13T00:00:01.000Z","updated":"2022-05-23T23:49:38.576Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-13T23:59:59.000Z","id":"G2276679644-POCLOUD","original_format":"UMM_JSON","granule_size":"19.086374282836914","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200913-000001-e20200913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.694 + 0 37.611 180","-37.694 -180 37.611 -0.002"],"time_start":"2020-09-14T00:00:01.000Z","updated":"2022-05-24T00:05:08.053Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-14T23:59:59.000Z","id":"G2276682576-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200914-000001-e20200914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.622 + 0.001 37.486 180","-37.622 -180 37.486 -0.001"],"time_start":"2020-09-15T00:00:01.000Z","updated":"2022-05-23T23:57:24.668Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-15T23:59:59.000Z","id":"G2276680569-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200915-000001-e20200915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.592 + 0.001 37.405 180","-37.592 -180 37.405 -0.002"],"time_start":"2020-09-16T00:00:02.000Z","updated":"2022-05-24T00:06:41.738Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-16T23:59:59.000Z","id":"G2276682875-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200916-000002-e20200916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.554 + 0.002 37.511 180","-37.554 -180 37.511 -0.002"],"time_start":"2020-09-17T00:00:01.000Z","updated":"2022-05-23T23:59:37.733Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-17T23:59:59.000Z","id":"G2276681357-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200917-000001-e20200917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.543 + 0.002 37.496 180","-37.543 -180 37.496 0"],"time_start":"2020-09-18T00:00:02.000Z","updated":"2022-05-24T00:48:29.336Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-18T23:59:59.000Z","id":"G2276692081-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200918-000002-e20200918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.472 + 0.003 37.442 180","-37.472 -180 37.442 -0.003"],"time_start":"2020-09-19T00:00:01.000Z","updated":"2022-05-23T23:49:28.020Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-19T23:59:58.000Z","id":"G2276679569-POCLOUD","original_format":"UMM_JSON","granule_size":"15.70550537109375","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200919-000001-e20200919-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.572 + 0.006 37.504 180","-37.572 -180 37.504 -0.002"],"time_start":"2020-09-20T00:00:01.000Z","updated":"2022-05-24T00:03:28.256Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-20T23:59:59.000Z","id":"G2276682031-POCLOUD","original_format":"UMM_JSON","granule_size":"18.819859504699707","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200920-000001-e20200920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.463 + 0.001 37.412 180","-37.463 -180 37.412 -0.001"],"time_start":"2020-09-21T00:00:01.000Z","updated":"2022-05-24T00:31:30.732Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-21T23:59:59.000Z","id":"G2276688018-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200921-000001-e20200921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.533 + 0.002 37.576 180","-37.533 -180 37.576 -0.002"],"time_start":"2020-09-22T00:00:02.000Z","updated":"2022-05-23T23:49:38.379Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-22T23:59:58.000Z","id":"G2276679643-POCLOUD","original_format":"UMM_JSON","granule_size":"16.306208610534668","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200922-000002-e20200922-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.56 + 0.003 37.489 180","-37.56 -180 37.489 -0.001"],"time_start":"2020-09-23T00:00:00.000Z","updated":"2022-05-24T00:06:37.911Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-23T23:59:59.000Z","id":"G2276682855-POCLOUD","original_format":"UMM_JSON","granule_size":"15.536880493164062","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200923-000000-e20200923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.592 + 0.001 37.566 180","-37.592 -180 37.566 0"],"time_start":"2020-09-24T00:00:00.000Z","updated":"2022-05-24T00:01:42.382Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-24T23:59:59.000Z","id":"G2276681572-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200924-000000-e20200924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.653 + 0.001 37.688 180","-37.653 -180 37.688 -0.001"],"time_start":"2020-09-25T00:00:01.000Z","updated":"2022-05-24T00:41:30.115Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-25T23:59:59.000Z","id":"G2276689667-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200925-000001-e20200925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.617 + 0.001 37.584 180","-37.617 -180 37.584 -0.001"],"time_start":"2020-09-26T00:00:02.000Z","updated":"2022-05-24T00:42:38.511Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-26T23:59:59.000Z","id":"G2276690020-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200926-000002-e20200926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.604 + 0.001 37.672 180","-37.604 -180 37.672 -0.004"],"time_start":"2020-09-27T00:00:00.000Z","updated":"2022-05-24T00:08:45.699Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-27T23:59:59.000Z","id":"G2276683644-POCLOUD","original_format":"UMM_JSON","granule_size":"19.473349571228027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200927-000000-e20200927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.518 + 0 37.655 180","-37.518 -180 37.655 -0.003"],"time_start":"2020-09-28T00:00:01.000Z","updated":"2022-05-24T00:07:35.004Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-28T23:59:59.000Z","id":"G2276683501-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200928-000001-e20200928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.524 + 0.001 37.645 180","-37.524 -180 37.645 -0.005"],"time_start":"2020-09-29T00:00:02.000Z","updated":"2022-05-24T00:17:31.403Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-29T23:59:59.000Z","id":"G2276685261-POCLOUD","original_format":"UMM_JSON","granule_size":"19.418140411376953","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200929-000002-e20200929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.533 + 0.005 37.56 180","-37.533 -180 37.56 0"],"time_start":"2020-09-30T00:00:01.000Z","updated":"2022-05-24T00:22:26.026Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-09-30T23:59:59.000Z","id":"G2276686118-POCLOUD","original_format":"UMM_JSON","granule_size":"14.612373352050781","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20200930-000001-e20200930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.556 + 0.004 37.555 180","-37.556 -180 37.555 0"],"time_start":"2020-10-01T00:00:01.000Z","updated":"2022-05-23T23:48:35.439Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-01T23:59:59.000Z","id":"G2276679030-POCLOUD","original_format":"UMM_JSON","granule_size":"17.580463409423828","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201001-000001-e20201001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.625 + 0.001 37.707 180","-37.625 -180 37.707 -0.001"],"time_start":"2020-10-02T00:00:00.000Z","updated":"2022-05-24T00:16:30.485Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-02T23:59:59.000Z","id":"G2276685049-POCLOUD","original_format":"UMM_JSON","granule_size":"18.26505470275879","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201002-000000-e20201002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.74 + 0.001 37.729 180","-37.74 -180 37.729 -0.004"],"time_start":"2020-10-03T00:00:00.000Z","updated":"2022-05-23T23:49:36.600Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-03T23:59:59.000Z","id":"G2276679640-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201003-000000-e20201003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.757 + 0 37.775 180","-37.757 -180 37.775 -0.001"],"time_start":"2020-10-04T00:00:01.000Z","updated":"2022-05-24T00:14:36.144Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-04T23:59:59.000Z","id":"G2276684765-POCLOUD","original_format":"UMM_JSON","granule_size":"13.409324645996094","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201004-000001-e20201004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.659 + 0.003 37.702 180","-37.659 -180 37.702 -0.003"],"time_start":"2020-10-05T00:00:01.000Z","updated":"2022-05-23T23:48:35.020Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-05T23:59:59.000Z","id":"G2276679027-POCLOUD","original_format":"UMM_JSON","granule_size":"13.673011779785156","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201005-000001-e20201005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.725 + 0.002 37.752 180","-37.725 -180 37.752 -0.002"],"time_start":"2020-10-06T00:00:01.000Z","updated":"2022-05-24T00:22:32.171Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-06T23:59:59.000Z","id":"G2276686546-POCLOUD","original_format":"UMM_JSON","granule_size":"19.262324333190918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201006-000001-e20201006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.692 + 0.001 37.697 180","-37.692 -180 37.697 -0.001"],"time_start":"2020-10-07T00:00:00.000Z","updated":"2022-05-23T23:51:30.369Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-07T23:59:59.000Z","id":"G2276679870-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201007-000000-e20201007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.666 + 0.002 37.645 180","-37.666 -180 37.645 -0.005"],"time_start":"2020-10-08T00:00:00.000Z","updated":"2022-05-23T23:47:58.319Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-08T23:59:59.000Z","id":"G2276678417-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201008-000000-e20201008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0.002 37.605 180","-37.636 -180 37.605 0"],"time_start":"2020-10-09T00:00:01.000Z","updated":"2022-05-24T00:31:45.077Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-09T23:59:59.000Z","id":"G2276688055-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201009-000001-e20201009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.688 + 0.004 37.62 180","-37.688 -180 37.62 0"],"time_start":"2020-10-10T00:00:01.000Z","updated":"2022-05-24T00:29:30.604Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-10T23:59:59.000Z","id":"G2276687839-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201010-000001-e20201010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.755 + 0.003 37.717 180","-37.755 -180 37.717 -0.001"],"time_start":"2020-10-11T00:00:01.000Z","updated":"2022-05-24T00:17:41.693Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-11T23:59:59.000Z","id":"G2276685285-POCLOUD","original_format":"UMM_JSON","granule_size":"19.013747215270996","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201011-000001-e20201011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.003 37.762 180","-37.769 -180 37.762 0"],"time_start":"2020-10-12T00:00:02.000Z","updated":"2022-05-23T23:49:37.695Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-12T23:59:59.000Z","id":"G2276679642-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201012-000002-e20201012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.832 + 0.003 37.668 180","-37.832 -180 37.668 -0.001"],"time_start":"2020-10-13T00:00:02.000Z","updated":"2022-05-23T23:47:34.123Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-13T23:59:59.000Z","id":"G2276677630-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201013-000002-e20201013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.843 + 0 37.637 180","-37.843 -180 37.637 -0.002"],"time_start":"2020-10-14T00:00:02.000Z","updated":"2022-05-24T00:12:37.872Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-14T23:59:59.000Z","id":"G2276684477-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201014-000002-e20201014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.744 + 0.001 37.642 180","-37.744 -180 37.642 -0.002"],"time_start":"2020-10-15T00:00:01.000Z","updated":"2022-05-24T00:31:37.677Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-15T23:59:59.000Z","id":"G2276688036-POCLOUD","original_format":"UMM_JSON","granule_size":"19.61827564239502","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201015-000001-e20201015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.854 + 0.001 37.66 180","-37.854 -180 37.66 -0.001"],"time_start":"2020-10-16T00:00:02.000Z","updated":"2022-05-23T23:58:27.339Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-16T23:59:59.000Z","id":"G2276681276-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201016-000002-e20201016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.809 + 0.001 37.624 180","-37.809 -180 37.624 0"],"time_start":"2020-10-17T00:00:01.000Z","updated":"2022-05-24T00:31:28.515Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-17T23:59:59.000Z","id":"G2276688023-POCLOUD","original_format":"UMM_JSON","granule_size":"19.517635345458984","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201017-000001-e20201017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.754 + 0.001 37.654 180","-37.754 -180 37.654 -0.001"],"time_start":"2020-10-18T00:00:01.000Z","updated":"2022-05-24T00:01:25.915Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-18T23:59:59.000Z","id":"G2276681516-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201018-000001-e20201018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.839 + 0.003 37.712 180","-37.839 -180 37.712 -0.001"],"time_start":"2020-10-19T00:00:02.000Z","updated":"2022-05-24T00:09:37.783Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-19T23:59:59.000Z","id":"G2276683697-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201019-000002-e20201019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.749 + 0.001 37.701 180","-37.749 -180 37.701 -0.001"],"time_start":"2020-10-20T00:00:02.000Z","updated":"2022-05-24T00:10:29.263Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-20T23:59:59.000Z","id":"G2276683743-POCLOUD","original_format":"UMM_JSON","granule_size":"17.284923553466797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201020-000002-e20201020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.811 + 0.001 37.645 180","-37.811 -180 37.645 0"],"time_start":"2020-10-21T00:00:01.000Z","updated":"2022-05-24T00:37:36.513Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-21T23:59:59.000Z","id":"G2276688939-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201021-000001-e20201021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.767 + 0.003 37.636 180","-37.767 -180 37.636 0"],"time_start":"2020-10-22T00:00:01.000Z","updated":"2022-05-23T23:55:25.689Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-22T23:59:59.000Z","id":"G2276680417-POCLOUD","original_format":"UMM_JSON","granule_size":"17.357958793640137","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201022-000001-e20201022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0 37.554 180","-37.777 -180 37.554 -0.005"],"time_start":"2020-10-23T00:00:01.000Z","updated":"2022-05-24T00:29:34.000Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-23T23:59:59.000Z","id":"G2276687832-POCLOUD","original_format":"UMM_JSON","granule_size":"18.411993980407715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201023-000001-e20201023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0 37.686 180","-37.747 -180 37.686 -0.001"],"time_start":"2020-10-24T00:00:01.000Z","updated":"2022-05-24T00:40:27.062Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-24T23:59:59.000Z","id":"G2276689608-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201024-000001-e20201024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.71 + 0 37.585 180","-37.71 -180 37.585 -0.001"],"time_start":"2020-10-25T00:00:02.000Z","updated":"2022-05-24T00:03:34.433Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-25T23:59:59.000Z","id":"G2276682042-POCLOUD","original_format":"UMM_JSON","granule_size":"18.613314628601074","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201025-000002-e20201025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0.001 37.609 180","-37.791 -180 37.609 -0.001"],"time_start":"2020-10-26T00:00:01.000Z","updated":"2022-05-24T00:27:36.388Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-26T23:59:59.000Z","id":"G2276687386-POCLOUD","original_format":"UMM_JSON","granule_size":"18.410568237304688","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201026-000001-e20201026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.805 + 0.003 37.729 180","-37.805 -180 37.729 -0.001"],"time_start":"2020-10-27T00:00:01.000Z","updated":"2022-05-24T00:08:44.983Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-27T23:59:59.000Z","id":"G2276683643-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201027-000001-e20201027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.813 + 0.001 37.774 180","-37.813 -180 37.774 -0.004"],"time_start":"2020-10-28T00:00:01.000Z","updated":"2022-05-23T23:58:33.676Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-28T23:59:59.000Z","id":"G2276681294-POCLOUD","original_format":"UMM_JSON","granule_size":"17.242536544799805","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201028-000001-e20201028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.81 + 0.002 37.691 180","-37.81 -180 37.691 -0.003"],"time_start":"2020-10-29T00:00:00.000Z","updated":"2022-05-24T00:11:31.966Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-29T23:59:59.000Z","id":"G2276683830-POCLOUD","original_format":"UMM_JSON","granule_size":"18.809517860412598","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201029-000000-e20201029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.766 + 0 37.652 180","-37.766 -180 37.652 0"],"time_start":"2020-10-30T00:00:01.000Z","updated":"2022-05-24T00:11:32.505Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-30T23:59:59.000Z","id":"G2276683831-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201030-000001-e20201030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.625 + 0.001 37.581 180","-37.625 -180 37.581 -0.001"],"time_start":"2020-10-31T00:00:00.000Z","updated":"2022-05-24T00:21:26.848Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-10-31T23:59:58.000Z","id":"G2276685894-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201031-000000-e20201031-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.514 + 0.001 37.525 180","-37.514 -180 37.525 -0.002"],"time_start":"2020-11-01T00:00:02.000Z","updated":"2022-05-24T00:10:36.274Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-01T23:59:59.000Z","id":"G2276683766-POCLOUD","original_format":"UMM_JSON","granule_size":"18.52357578277588","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201101-000002-e20201101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.537 + 0 37.539 180","-37.537 -180 37.539 -0.005"],"time_start":"2020-11-02T00:00:01.000Z","updated":"2022-05-23T23:57:31.687Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-02T23:59:59.000Z","id":"G2276680576-POCLOUD","original_format":"UMM_JSON","granule_size":"17.46761417388916","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201102-000001-e20201102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.648 + 0 37.529 180","-37.648 -180 37.529 -0.003"],"time_start":"2020-11-03T00:00:01.000Z","updated":"2022-05-24T00:35:32.032Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-03T23:59:59.000Z","id":"G2276688792-POCLOUD","original_format":"UMM_JSON","granule_size":"18.51420783996582","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201103-000001-e20201103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.678 + 0.001 37.662 180","-37.678 -180 37.662 -0.002"],"time_start":"2020-11-04T00:00:01.000Z","updated":"2022-05-24T00:05:34.470Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-04T23:59:59.000Z","id":"G2276682642-POCLOUD","original_format":"UMM_JSON","granule_size":"17.080857276916504","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201104-000001-e20201104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.657 + 0.004 37.701 180","-37.657 -180 37.701 -0.005"],"time_start":"2020-11-05T00:00:01.000Z","updated":"2022-05-24T00:40:36.394Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-05T23:59:59.000Z","id":"G2276689624-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201105-000001-e20201105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.706 + 0 37.768 180","-37.706 -180 37.768 -0.004"],"time_start":"2020-11-06T00:00:02.000Z","updated":"2022-05-24T00:41:31.699Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-06T23:59:58.000Z","id":"G2276689671-POCLOUD","original_format":"UMM_JSON","granule_size":"14.10436725616455","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201106-000002-e20201106-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.689 + 0.001 37.63 180","-37.689 -180 37.63 -0.002"],"time_start":"2020-11-07T00:00:02.000Z","updated":"2022-05-24T00:24:42.009Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-07T23:59:59.000Z","id":"G2276686899-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201107-000002-e20201107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.667 + 0.002 37.736 180","-37.667 -180 37.736 -0.001"],"time_start":"2020-11-08T00:00:02.000Z","updated":"2022-05-24T00:01:39.080Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-08T23:59:59.000Z","id":"G2276681556-POCLOUD","original_format":"UMM_JSON","granule_size":"18.29556179046631","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201108-000002-e20201108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.578 + 0 37.776 180","-37.578 -180 37.776 -0.007"],"time_start":"2020-11-09T00:00:02.000Z","updated":"2022-05-23T23:50:34.911Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-09T23:59:59.000Z","id":"G2276679779-POCLOUD","original_format":"UMM_JSON","granule_size":"17.07363796234131","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201109-000002-e20201109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.48 + 0.002 37.686 180","-37.48 -180 37.686 -0.001"],"time_start":"2020-11-10T00:00:01.000Z","updated":"2022-05-23T23:53:32.097Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-10T23:59:59.000Z","id":"G2276680319-POCLOUD","original_format":"UMM_JSON","granule_size":"16.589211463928223","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201110-000001-e20201110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.575 + 0.007 37.666 180","-37.575 -180 37.666 -0.003"],"time_start":"2020-11-11T00:00:01.000Z","updated":"2022-05-24T00:25:30.087Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-11T23:59:59.000Z","id":"G2276686978-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201111-000001-e20201111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.524 + 0.001 37.635 180","-37.524 -180 37.635 -0.002"],"time_start":"2020-11-12T00:00:01.000Z","updated":"2022-05-24T00:18:42.820Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-12T23:59:59.000Z","id":"G2276685670-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201112-000001-e20201112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.55 + 0.001 37.658 180","-37.55 -180 37.658 -0.002"],"time_start":"2020-11-13T00:00:01.000Z","updated":"2022-05-24T00:03:30.410Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-13T23:59:59.000Z","id":"G2276682035-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201113-000001-e20201113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.5 + 0.001 37.533 180","-37.5 -180 37.533 -0.002"],"time_start":"2020-11-14T00:00:02.000Z","updated":"2022-05-24T00:41:34.827Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-14T23:59:59.000Z","id":"G2276689680-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201114-000002-e20201114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.443 + 0 37.389 180","-37.443 -180 37.389 -0.002"],"time_start":"2020-11-15T00:00:02.000Z","updated":"2022-05-24T00:30:40.921Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-15T23:59:59.000Z","id":"G2276687960-POCLOUD","original_format":"UMM_JSON","granule_size":"18.289389610290527","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201115-000002-e20201115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0.001 37.473 180","-37.565 -180 37.473 -0.003"],"time_start":"2020-11-16T00:00:01.000Z","updated":"2022-05-23T23:52:27.592Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-16T23:59:59.000Z","id":"G2276680151-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201116-000001-e20201116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.522 + 0.001 37.558 180","-37.522 -180 37.558 0"],"time_start":"2020-11-17T00:00:02.000Z","updated":"2022-05-24T00:41:39.098Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-17T23:59:59.000Z","id":"G2276689687-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201117-000002-e20201117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.459 + 0.001 37.413 180","-37.459 -180 37.413 -0.003"],"time_start":"2020-11-18T00:00:02.000Z","updated":"2022-05-24T00:04:42.607Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-18T23:59:59.000Z","id":"G2276682475-POCLOUD","original_format":"UMM_JSON","granule_size":"16.996291160583496","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201118-000002-e20201118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.49 + 0.004 37.497 180","-37.49 -180 37.497 -0.004"],"time_start":"2020-11-19T00:00:01.000Z","updated":"2022-05-23T23:58:28.597Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-19T23:59:59.000Z","id":"G2276681279-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201119-000001-e20201119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.466 + 0.001 38.166 180","-37.466 -180 38.166 -0.004"],"time_start":"2020-11-20T00:00:01.000Z","updated":"2022-05-23T23:52:33.232Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-20T23:59:59.000Z","id":"G2276680253-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201120-000001-e20201120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.463 + 0.003 38.513 180","-37.463 -180 38.513 -0.002"],"time_start":"2020-11-21T00:00:02.000Z","updated":"2022-05-24T00:02:26.347Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-21T23:59:59.000Z","id":"G2276681600-POCLOUD","original_format":"UMM_JSON","granule_size":"15.930342674255371","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201121-000002-e20201121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.491 + 0.001 37.58 180","-37.491 -180 37.58 -0.003"],"time_start":"2020-11-22T00:00:00.000Z","updated":"2022-05-24T00:47:30.320Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-22T23:59:59.000Z","id":"G2276691728-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201122-000000-e20201122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.622 + 0.001 37.596 180","-37.622 -180 37.596 0"],"time_start":"2020-11-23T00:00:01.000Z","updated":"2022-05-24T00:47:27.617Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-23T23:59:59.000Z","id":"G2276691700-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201123-000001-e20201123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.615 + 0.001 38.99 180","-37.615 -180 38.99 -0.003"],"time_start":"2020-11-24T00:00:01.000Z","updated":"2022-05-24T00:48:30.908Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-24T23:59:59.000Z","id":"G2276692177-POCLOUD","original_format":"UMM_JSON","granule_size":"16.269404411315918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201124-000001-e20201124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0 39.027 180","-37.595 -180 39.027 -0.002"],"time_start":"2020-11-25T00:00:02.000Z","updated":"2022-05-24T00:31:28.938Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-25T23:59:59.000Z","id":"G2276688020-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201125-000002-e20201125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.571 + 0.001 39.583 180","-37.571 -180 39.583 -0.001"],"time_start":"2020-11-26T00:00:01.000Z","updated":"2022-05-24T00:43:32.338Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-26T23:59:59.000Z","id":"G2276690096-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201126-000001-e20201126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0.003 37.517 180","-37.603 -180 37.517 -0.001"],"time_start":"2020-11-27T00:00:02.000Z","updated":"2022-05-24T00:48:35.540Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-27T23:59:59.000Z","id":"G2276692117-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201127-000002-e20201127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.652 + 0 37.514 180","-37.652 -180 37.514 -0.001"],"time_start":"2020-11-28T00:00:02.000Z","updated":"2022-05-24T00:17:42.164Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-28T23:59:59.000Z","id":"G2276685283-POCLOUD","original_format":"UMM_JSON","granule_size":"17.214592933654785","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201128-000002-e20201128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.735 + 0.001 37.892 180","-37.735 -180 37.892 -0.003"],"time_start":"2020-11-29T00:00:01.000Z","updated":"2022-05-23T23:52:33.101Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-29T23:59:59.000Z","id":"G2276680257-POCLOUD","original_format":"UMM_JSON","granule_size":"17.127190589904785","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201129-000001-e20201129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.743 + 0.001 37.947 180","-37.743 -180 37.947 -0.007"],"time_start":"2020-11-30T00:00:02.000Z","updated":"2022-05-24T00:02:28.096Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-11-30T23:59:59.000Z","id":"G2276681608-POCLOUD","original_format":"UMM_JSON","granule_size":"17.29635715484619","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201130-000002-e20201130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.704 + 0 37.623 180","-37.704 -180 37.623 -0.002"],"time_start":"2020-12-01T00:00:00.000Z","updated":"2022-05-23T23:47:37.232Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-01T23:59:59.000Z","id":"G2276677670-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201201-000000-e20201201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.87 + 0.004 37.598 180","-37.87 -180 37.598 -0.001"],"time_start":"2020-12-02T00:00:01.000Z","updated":"2022-05-24T00:20:37.919Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-02T23:59:59.000Z","id":"G2276685839-POCLOUD","original_format":"UMM_JSON","granule_size":"17.510976791381836","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201202-000001-e20201202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.753 + 0.001 37.582 180","-37.753 -180 37.582 -0.001"],"time_start":"2020-12-03T00:00:00.000Z","updated":"2022-05-24T00:04:25.272Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-03T23:59:59.000Z","id":"G2276682430-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201203-000000-e20201203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0.001 37.64 180","-37.75 -180 37.64 -0.001"],"time_start":"2020-12-04T00:00:02.000Z","updated":"2022-05-24T00:30:31.135Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-04T23:59:58.000Z","id":"G2276687943-POCLOUD","original_format":"UMM_JSON","granule_size":"18.436156272888184","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201204-000002-e20201204-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.68 + 0.004 37.61 180","-37.68 -180 37.61 -0.001"],"time_start":"2020-12-05T00:00:00.000Z","updated":"2022-05-24T00:16:29.734Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-05T23:59:59.000Z","id":"G2276685047-POCLOUD","original_format":"UMM_JSON","granule_size":"18.40549373626709","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201205-000000-e20201205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.692 + 0.002 37.587 180","-37.692 -180 37.587 -0.003"],"time_start":"2020-12-06T00:00:01.000Z","updated":"2022-05-23T23:56:36.856Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-06T23:59:59.000Z","id":"G2276680531-POCLOUD","original_format":"UMM_JSON","granule_size":"18.296826362609863","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201206-000001-e20201206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.764 + 0.001 37.632 180","-37.764 -180 37.632 -0.001"],"time_start":"2020-12-07T00:00:01.000Z","updated":"2022-05-24T00:10:30.838Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-07T23:59:59.000Z","id":"G2276683749-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201207-000001-e20201207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0 37.638 180","-37.777 -180 37.638 0"],"time_start":"2020-12-08T00:00:01.000Z","updated":"2022-05-24T00:16:31.679Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-08T23:59:59.000Z","id":"G2276685054-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201208-000001-e20201208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.782 + 0.001 37.784 180","-37.782 -180 37.784 -0.001"],"time_start":"2020-12-09T00:00:01.000Z","updated":"2022-05-24T00:39:40.603Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-09T23:59:59.000Z","id":"G2276689573-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201209-000001-e20201209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.794 + 0.002 37.726 180","-37.794 -180 37.726 -0.001"],"time_start":"2020-12-10T00:00:00.000Z","updated":"2022-05-24T00:49:35.300Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-10T23:59:59.000Z","id":"G2276692714-POCLOUD","original_format":"UMM_JSON","granule_size":"18.33931827545166","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201210-000000-e20201210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.753 + 0.002 37.76 180","-37.753 -180 37.76 -0.002"],"time_start":"2020-12-11T00:00:01.000Z","updated":"2022-05-24T00:01:32.297Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-11T23:59:59.000Z","id":"G2276681539-POCLOUD","original_format":"UMM_JSON","granule_size":"18.476311683654785","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201211-000001-e20201211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.819 + 0 37.659 180","-37.819 -180 37.659 0"],"time_start":"2020-12-12T00:00:02.000Z","updated":"2022-05-24T00:06:38.095Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-12T23:59:59.000Z","id":"G2276682860-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201212-000002-e20201212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.685 + 0.003 37.63 180","-37.685 -180 37.63 0"],"time_start":"2020-12-13T00:00:01.000Z","updated":"2022-05-24T00:04:39.040Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-13T23:59:59.000Z","id":"G2276682470-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201213-000001-e20201213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.7 + 0.002 37.685 180","-37.7 -180 37.685 -0.001"],"time_start":"2020-12-14T00:00:02.000Z","updated":"2022-05-24T00:46:28.951Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-14T23:59:59.000Z","id":"G2276690886-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201214-000002-e20201214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0.003 37.665 180","-37.75 -180 37.665 -0.004"],"time_start":"2020-12-15T00:00:01.000Z","updated":"2022-05-23T23:49:36.887Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-15T23:59:59.000Z","id":"G2276679639-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201215-000001-e20201215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0 37.734 180","-37.75 -180 37.734 -0.003"],"time_start":"2020-12-16T00:00:01.000Z","updated":"2022-05-24T00:40:36.223Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-16T23:59:59.000Z","id":"G2276689622-POCLOUD","original_format":"UMM_JSON","granule_size":"13.796913146972656","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201216-000001-e20201216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.677 + 0.001 37.498 180","-37.677 -180 37.498 -0.003"],"time_start":"2020-12-17T00:00:01.000Z","updated":"2022-05-23T23:54:28.716Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-17T23:59:59.000Z","id":"G2276680355-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201217-000001-e20201217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.68 + 0.001 37.542 180","-37.68 -180 37.542 -0.002"],"time_start":"2020-12-18T00:00:02.000Z","updated":"2022-05-23T23:53:38.529Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-18T23:59:59.000Z","id":"G2276680334-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201218-000002-e20201218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0 37.663 180","-37.644 -180 37.663 -0.003"],"time_start":"2020-12-19T00:00:01.000Z","updated":"2022-05-24T00:46:39.196Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-19T23:59:59.000Z","id":"G2276691005-POCLOUD","original_format":"UMM_JSON","granule_size":"17.116743087768555","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201219-000001-e20201219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.732 + 0 37.702 180","-37.732 -180 37.702 -0.001"],"time_start":"2020-12-20T00:00:01.000Z","updated":"2022-05-24T00:11:35.184Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-20T23:59:59.000Z","id":"G2276683835-POCLOUD","original_format":"UMM_JSON","granule_size":"16.276147842407227","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201220-000001-e20201220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.677 + 0 37.723 180","-37.677 -180 37.723 -0.005"],"time_start":"2020-12-21T00:00:01.000Z","updated":"2022-05-24T00:30:42.831Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-21T23:59:59.000Z","id":"G2276687973-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201221-000001-e20201221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.666 + 0.001 37.629 180","-37.666 -180 37.629 -0.001"],"time_start":"2020-12-22T00:00:01.000Z","updated":"2022-05-23T23:51:35.333Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-22T23:59:59.000Z","id":"G2276679883-POCLOUD","original_format":"UMM_JSON","granule_size":"15.096563339233398","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201222-000001-e20201222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.714 + 0.002 37.643 180","-37.714 -180 37.643 0"],"time_start":"2020-12-23T00:00:02.000Z","updated":"2022-05-23T23:51:24.587Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-23T23:59:59.000Z","id":"G2276679851-POCLOUD","original_format":"UMM_JSON","granule_size":"16.21678352355957","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201223-000002-e20201223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.793 + 0.001 37.68 180","-37.793 -180 37.68 0"],"time_start":"2020-12-24T00:00:02.000Z","updated":"2022-05-24T00:00:37.832Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-24T23:59:59.000Z","id":"G2276681468-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201224-000002-e20201224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.003 37.827 180","-37.769 -180 37.827 -0.003"],"time_start":"2020-12-25T00:00:01.000Z","updated":"2022-05-24T00:42:37.529Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-25T23:59:59.000Z","id":"G2276690012-POCLOUD","original_format":"UMM_JSON","granule_size":"16.529666900634766","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201225-000001-e20201225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.776 + 0.001 37.754 180","-37.776 -180 37.754 -0.008"],"time_start":"2020-12-26T00:00:01.000Z","updated":"2022-05-24T00:18:31.816Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-26T23:59:59.000Z","id":"G2276685622-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201226-000001-e20201226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.702 + 0.002 37.651 180","-37.702 -180 37.651 -0.001"],"time_start":"2020-12-27T00:00:01.000Z","updated":"2022-05-23T23:55:27.233Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-27T23:59:59.000Z","id":"G2276680420-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201227-000001-e20201227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.72 + 0 37.477 180","-37.72 -180 37.477 -0.004"],"time_start":"2020-12-28T00:00:01.000Z","updated":"2022-05-24T00:37:41.189Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-28T23:59:59.000Z","id":"G2276688945-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201228-000001-e20201228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.554 + 0.002 37.525 180","-37.554 -180 37.525 -0.001"],"time_start":"2020-12-29T00:00:02.000Z","updated":"2022-05-24T00:16:29.912Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-29T23:59:59.000Z","id":"G2276685055-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201229-000002-e20201229-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.542 + 0 37.599 180","-37.542 -180 37.599 0"],"time_start":"2020-12-30T00:00:00.000Z","updated":"2022-05-24T00:18:27.563Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-30T23:59:59.000Z","id":"G2276685616-POCLOUD","original_format":"UMM_JSON","granule_size":"15.564602851867676","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201230-000000-e20201230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.582 + 0.001 37.555 180","-37.582 -180 37.555 0"],"time_start":"2020-12-31T00:00:01.000Z","updated":"2022-05-23T23:59:28.382Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2020-12-31T23:59:59.000Z","id":"G2276681323-POCLOUD","original_format":"UMM_JSON","granule_size":"15.424537658691406","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20201231-000001-e20201231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.613 + 0.002 37.633 180","-37.613 -180 37.633 -0.003"],"time_start":"2021-01-01T00:00:02.000Z","updated":"2022-05-24T00:25:34.566Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-01T23:59:59.000Z","id":"G2276686995-POCLOUD","original_format":"UMM_JSON","granule_size":"15.327378273010254","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210101-000002-e20210101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.744 + 0.001 37.666 180","-37.744 -180 37.666 -0.001"],"time_start":"2021-01-02T00:00:00.000Z","updated":"2022-05-24T00:30:31.236Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-02T23:59:59.000Z","id":"G2276687924-POCLOUD","original_format":"UMM_JSON","granule_size":"18.312463760375977","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210102-000000-e20210102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0 37.694 180","-37.741 -180 37.694 -0.001"],"time_start":"2021-01-03T00:00:02.000Z","updated":"2022-05-24T00:20:29.114Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-03T23:59:59.000Z","id":"G2276685807-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210103-000002-e20210103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.781 + 0 37.681 180","-37.781 -180 37.681 0"],"time_start":"2021-01-04T00:00:01.000Z","updated":"2022-05-24T00:40:30.796Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-04T23:59:59.000Z","id":"G2276689609-POCLOUD","original_format":"UMM_JSON","granule_size":"17.131583213806152","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210104-000001-e20210104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.737 + 0.003 38.113 180","-37.737 -180 38.113 0"],"time_start":"2021-01-05T00:00:01.000Z","updated":"2022-05-24T00:19:27.064Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-05T23:59:59.000Z","id":"G2276685707-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210105-000001-e20210105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.676 + 0.001 39.309 180","-37.676 -180 39.309 -0.003"],"time_start":"2021-01-06T00:00:01.000Z","updated":"2022-05-24T00:34:43.409Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-06T23:59:59.000Z","id":"G2276688741-POCLOUD","original_format":"UMM_JSON","granule_size":"14.850991249084473","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210106-000001-e20210106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.646 + 0.001 38.162 180","-37.646 -180 38.162 0"],"time_start":"2021-01-07T00:00:01.000Z","updated":"2022-05-24T00:08:24.877Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-07T23:59:59.000Z","id":"G2276683573-POCLOUD","original_format":"UMM_JSON","granule_size":"15.128873825073242","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210107-000001-e20210107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.477 + 0.003 37.566 180","-37.477 -180 37.566 -0.003"],"time_start":"2021-01-08T00:00:01.000Z","updated":"2022-05-24T00:29:30.362Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-08T23:59:59.000Z","id":"G2276687831-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210108-000001-e20210108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.549 + 0.001 37.41 180","-37.549 -180 37.41 0"],"time_start":"2021-01-09T00:00:01.000Z","updated":"2022-05-24T00:08:27.114Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-09T23:59:59.000Z","id":"G2276683582-POCLOUD","original_format":"UMM_JSON","granule_size":"16.021488189697266","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210109-000001-e20210109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.516 + 0.001 38.642 180","-37.516 -180 38.642 -0.003"],"time_start":"2021-01-10T00:00:00.000Z","updated":"2022-05-24T00:40:38.931Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-10T23:59:59.000Z","id":"G2276689629-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210110-000000-e20210110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.637 + 0 37.372 180","-37.637 -180 37.372 0"],"time_start":"2021-01-11T00:00:01.000Z","updated":"2022-05-23T23:57:32.682Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-11T23:59:59.000Z","id":"G2276680582-POCLOUD","original_format":"UMM_JSON","granule_size":"16.056790351867676","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210111-000001-e20210111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.56 + 0 37.732 180","-37.56 -180 37.732 -0.001"],"time_start":"2021-01-12T00:00:01.000Z","updated":"2022-05-24T00:47:30.678Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-12T23:59:59.000Z","id":"G2276691709-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210112-000001-e20210112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.532 + 0.004 37.328 180","-37.532 -180 37.328 -0.003"],"time_start":"2021-01-13T00:00:02.000Z","updated":"2022-05-24T00:05:06.823Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-13T23:59:59.000Z","id":"G2276682577-POCLOUD","original_format":"UMM_JSON","granule_size":"14.269947052001953","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210113-000002-e20210113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.531 + 0.001 37.992 180","-37.531 -180 37.992 -0.002"],"time_start":"2021-01-14T00:00:01.000Z","updated":"2022-05-24T00:16:28.136Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-14T23:59:59.000Z","id":"G2276685046-POCLOUD","original_format":"UMM_JSON","granule_size":"16.433375358581543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210114-000001-e20210114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.486 + 0.002 37.265 180","-37.486 -180 37.265 -0.006"],"time_start":"2021-01-15T00:00:01.000Z","updated":"2022-05-23T23:56:30.443Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-15T23:59:59.000Z","id":"G2276680503-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210115-000001-e20210115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.362 + 0.001 37.417 180","-37.362 -180 37.417 -0.001"],"time_start":"2021-01-16T00:00:01.000Z","updated":"2022-05-24T00:29:33.984Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-16T23:59:59.000Z","id":"G2276687829-POCLOUD","original_format":"UMM_JSON","granule_size":"17.50589084625244","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210116-000001-e20210116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.584 + 0 37.632 180","-37.584 -180 37.632 -0.001"],"time_start":"2021-01-17T00:00:01.000Z","updated":"2022-05-24T00:32:31.467Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-17T23:59:59.000Z","id":"G2276688090-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210117-000001-e20210117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.627 + 0.001 37.599 180","-37.627 -180 37.599 0"],"time_start":"2021-01-18T00:00:01.000Z","updated":"2022-05-24T00:18:38.406Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-18T23:59:59.000Z","id":"G2276685647-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210118-000001-e20210118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.613 + 0 37.499 180","-37.613 -180 37.499 -0.001"],"time_start":"2021-01-19T00:00:01.000Z","updated":"2022-05-24T00:28:33.305Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-19T23:59:59.000Z","id":"G2276687707-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210119-000001-e20210119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.558 + 0.013 37.395 180","-37.558 -180 37.395 -0.005"],"time_start":"2021-01-20T00:00:00.000Z","updated":"2022-05-24T00:23:22.271Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-20T23:59:58.000Z","id":"G2276686657-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210120-000000-e20210120-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0.007 37.581 180","-37.644 -180 37.581 -0.002"],"time_start":"2021-01-21T00:00:02.000Z","updated":"2022-05-24T00:07:34.105Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-21T23:59:59.000Z","id":"G2276683498-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210121-000002-e20210121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.651 + 0 37.599 180","-37.651 -180 37.599 -0.001"],"time_start":"2021-01-22T00:00:01.000Z","updated":"2022-05-24T00:17:29.603Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-22T23:59:59.000Z","id":"G2276685258-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210122-000001-e20210122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.544 + 0 37.609 180","-37.544 -180 37.609 -0.001"],"time_start":"2021-01-23T00:00:02.000Z","updated":"2022-05-23T23:53:33.418Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-23T23:59:59.000Z","id":"G2276680323-POCLOUD","original_format":"UMM_JSON","granule_size":"15.706258773803711","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210123-000002-e20210123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.559 + 0.001 37.562 180","-37.559 -180 37.562 -0.001"],"time_start":"2021-01-24T00:00:01.000Z","updated":"2022-05-24T00:44:44.337Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-24T23:59:59.000Z","id":"G2276690215-POCLOUD","original_format":"UMM_JSON","granule_size":"15.313997268676758","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210124-000001-e20210124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.634 + 0 37.686 180","-37.634 -180 37.686 -0.004"],"time_start":"2021-01-25T00:00:02.000Z","updated":"2022-05-23T23:47:58.363Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-25T23:59:59.000Z","id":"G2276678418-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210125-000002-e20210125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.703 + 0.002 37.724 180","-37.703 -180 37.724 -0.003"],"time_start":"2021-01-26T00:00:02.000Z","updated":"2022-05-24T00:16:30.354Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-26T23:59:59.000Z","id":"G2276685050-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210126-000002-e20210126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0.003 37.786 180","-37.623 -180 37.786 -0.001"],"time_start":"2021-01-27T00:00:02.000Z","updated":"2022-05-24T00:34:29.984Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-27T23:59:59.000Z","id":"G2276688710-POCLOUD","original_format":"UMM_JSON","granule_size":"17.087081909179688","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210127-000002-e20210127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.672 + 0 37.806 180","-37.672 -180 37.806 -0.001"],"time_start":"2021-01-28T00:00:02.000Z","updated":"2022-05-23T23:56:31.697Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-28T23:59:59.000Z","id":"G2276680505-POCLOUD","original_format":"UMM_JSON","granule_size":"17.298521041870117","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210128-000002-e20210128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.732 + 0.001 37.621 180","-37.732 -180 37.621 0"],"time_start":"2021-01-29T00:00:01.000Z","updated":"2022-05-23T23:53:33.007Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-29T23:59:59.000Z","id":"G2276680325-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210129-000001-e20210129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.736 + 0.001 37.68 180","-37.736 -180 37.68 -0.003"],"time_start":"2021-01-30T00:00:01.000Z","updated":"2022-05-24T00:24:34.420Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-30T23:59:59.000Z","id":"G2276686860-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210130-000001-e20210130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.618 + 0 37.758 180","-37.618 -180 37.758 -0.003"],"time_start":"2021-01-31T00:00:00.000Z","updated":"2022-05-24T00:34:31.942Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-01-31T23:59:59.000Z","id":"G2276688716-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210131-000000-e20210131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.637 + 0 37.667 180","-37.637 -180 37.667 -0.001"],"time_start":"2021-02-01T00:00:01.000Z","updated":"2022-05-24T00:05:31.619Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-01T23:59:59.000Z","id":"G2276682630-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210201-000001-e20210201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.635 + 0.001 37.661 180","-37.635 -180 37.661 -0.002"],"time_start":"2021-02-02T00:00:01.000Z","updated":"2022-05-24T00:05:34.109Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-02T23:59:59.000Z","id":"G2276682640-POCLOUD","original_format":"UMM_JSON","granule_size":"17.46174716949463","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210202-000001-e20210202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0.001 37.674 180","-37.641 -180 37.674 -0.002"],"time_start":"2021-02-03T00:00:01.000Z","updated":"2022-05-24T00:38:38.521Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-03T23:59:59.000Z","id":"G2276689515-POCLOUD","original_format":"UMM_JSON","granule_size":"17.142373085021973","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210203-000001-e20210203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.749 + 0.001 37.695 180","-37.749 -180 37.695 -0.001"],"time_start":"2021-02-04T00:00:02.000Z","updated":"2022-05-24T00:05:28.724Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-04T23:59:59.000Z","id":"G2276682610-POCLOUD","original_format":"UMM_JSON","granule_size":"17.009679794311523","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210204-000002-e20210204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.753 + 0 37.77 180","-37.753 -180 37.77 -0.001"],"time_start":"2021-02-05T00:00:01.000Z","updated":"2022-05-24T00:25:32.369Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-05T23:59:59.000Z","id":"G2276686984-POCLOUD","original_format":"UMM_JSON","granule_size":"17.422104835510254","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210205-000001-e20210205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.78 + 0.001 37.701 180","-37.78 -180 37.701 -0.003"],"time_start":"2021-02-06T00:00:01.000Z","updated":"2022-05-24T00:41:34.870Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-06T23:59:59.000Z","id":"G2276689679-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210206-000001-e20210206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.821 + 0 37.691 180","-37.821 -180 37.691 -0.006"],"time_start":"2021-02-07T00:00:01.000Z","updated":"2022-05-23T23:49:33.410Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-07T23:59:59.000Z","id":"G2276679625-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210207-000001-e20210207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.827 + 0.002 37.764 180","-37.827 -180 37.764 -0.004"],"time_start":"2021-02-08T00:00:00.000Z","updated":"2022-05-24T00:19:28.537Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-08T23:59:59.000Z","id":"G2276685711-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210208-000000-e20210208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0.001 37.65 180","-37.747 -180 37.65 0"],"time_start":"2021-02-09T00:00:01.000Z","updated":"2022-05-23T23:59:35.596Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-09T23:59:59.000Z","id":"G2276681352-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210209-000001-e20210209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.778 + 0 37.581 180","-37.778 -180 37.581 0"],"time_start":"2021-02-10T00:00:01.000Z","updated":"2022-05-23T23:52:35.671Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-10T23:59:59.000Z","id":"G2276680262-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210210-000001-e20210210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.788 + 0.004 37.705 180","-37.788 -180 37.705 0"],"time_start":"2021-02-11T00:00:02.000Z","updated":"2022-05-23T23:56:25.740Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-11T23:59:59.000Z","id":"G2276680495-POCLOUD","original_format":"UMM_JSON","granule_size":"18.85628032684326","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210211-000002-e20210211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.834 + 0 37.673 180","-37.834 -180 37.673 -0.001"],"time_start":"2021-02-12T00:00:01.000Z","updated":"2022-05-24T00:19:35.820Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-12T23:59:59.000Z","id":"G2276685740-POCLOUD","original_format":"UMM_JSON","granule_size":"18.507246017456055","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210212-000001-e20210212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.831 + 0 37.668 180","-37.831 -180 37.668 -0.002"],"time_start":"2021-02-13T00:00:01.000Z","updated":"2022-05-24T00:19:32.204Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-13T23:59:59.000Z","id":"G2276685732-POCLOUD","original_format":"UMM_JSON","granule_size":"18.24037742614746","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210213-000001-e20210213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.748 + 0.003 37.677 180","-37.748 -180 37.677 0"],"time_start":"2021-02-14T00:00:01.000Z","updated":"2022-05-24T00:22:33.401Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-14T23:59:59.000Z","id":"G2276686559-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210214-000001-e20210214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.699 + 0 37.393 180","-37.699 -180 37.393 0"],"time_start":"2021-02-15T00:00:01.000Z","updated":"2022-05-23T23:53:31.924Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-15T23:59:59.000Z","id":"G2276680318-POCLOUD","original_format":"UMM_JSON","granule_size":"17.533655166625977","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210215-000001-e20210215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.688 + 0.001 37.53 180","-37.688 -180 37.53 -0.001"],"time_start":"2021-02-16T00:00:01.000Z","updated":"2022-05-23T23:51:31.858Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-16T23:59:59.000Z","id":"G2276679864-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210216-000001-e20210216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0.001 37.594 180","-37.695 -180 37.594 -0.002"],"time_start":"2021-02-17T00:00:02.000Z","updated":"2022-05-24T00:32:49.559Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-17T23:59:59.000Z","id":"G2276688557-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210217-000002-e20210217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.706 + 0.001 37.625 180","-37.706 -180 37.625 -0.002"],"time_start":"2021-02-18T00:00:01.000Z","updated":"2022-05-24T00:29:28.795Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-18T23:59:59.000Z","id":"G2276687826-POCLOUD","original_format":"UMM_JSON","granule_size":"17.00918483734131","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210218-000001-e20210218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.806 + 0.001 37.606 180","-37.806 -180 37.606 -0.004"],"time_start":"2021-02-19T00:00:01.000Z","updated":"2022-05-23T23:52:31.197Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-19T23:59:59.000Z","id":"G2276680249-POCLOUD","original_format":"UMM_JSON","granule_size":"17.060240745544434","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210219-000001-e20210219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.86 + 0.001 37.64 180","-37.86 -180 37.64 -0.003"],"time_start":"2021-02-20T00:00:01.000Z","updated":"2022-05-24T00:09:33.891Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-20T23:59:59.000Z","id":"G2276683688-POCLOUD","original_format":"UMM_JSON","granule_size":"17.175774574279785","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210220-000001-e20210220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.829 + 0 37.637 180","-37.829 -180 37.637 -0.002"],"time_start":"2021-02-21T00:00:02.000Z","updated":"2022-05-23T23:51:27.382Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-21T23:59:59.000Z","id":"G2276679854-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210221-000002-e20210221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.836 + 0 37.57 180","-37.836 -180 37.57 -0.001"],"time_start":"2021-02-22T00:00:01.000Z","updated":"2022-05-24T00:20:57.226Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-22T23:59:59.000Z","id":"G2276685877-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210222-000001-e20210222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.81 + 0.001 37.664 180","-37.81 -180 37.664 -0.001"],"time_start":"2021-02-23T00:00:00.000Z","updated":"2022-05-24T00:28:29.194Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-23T23:59:59.000Z","id":"G2276687697-POCLOUD","original_format":"UMM_JSON","granule_size":"16.984646797180176","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210223-000000-e20210223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.794 + 0.002 37.597 180","-37.794 -180 37.597 0"],"time_start":"2021-02-24T00:00:01.000Z","updated":"2022-05-23T23:53:29.201Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-24T23:59:59.000Z","id":"G2276680310-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210224-000001-e20210224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.684 + 0.001 37.583 180","-37.684 -180 37.583 0"],"time_start":"2021-02-25T00:00:01.000Z","updated":"2022-05-24T00:31:56.525Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-25T23:59:59.000Z","id":"G2276688059-POCLOUD","original_format":"UMM_JSON","granule_size":"16.691977500915527","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210225-000001-e20210225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.495 + 0.002 37.545 180","-37.495 -180 37.545 -0.001"],"time_start":"2021-02-26T00:00:01.000Z","updated":"2022-05-24T00:18:32.993Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-26T23:59:59.000Z","id":"G2276685624-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210226-000001-e20210226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0.003 37.462 180","-37.603 -180 37.462 -0.003"],"time_start":"2021-02-27T00:00:02.000Z","updated":"2022-05-24T00:06:25.808Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-27T23:59:59.000Z","id":"G2276682825-POCLOUD","original_format":"UMM_JSON","granule_size":"16.06639575958252","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210227-000002-e20210227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.63 + 0.002 37.547 180","-37.63 -180 37.547 -0.001"],"time_start":"2021-02-28T00:00:02.000Z","updated":"2022-05-24T00:14:35.887Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-02-28T23:59:59.000Z","id":"G2276684738-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210228-000002-e20210228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.697 + 0.002 37.68 180","-37.697 -180 37.68 -0.001"],"time_start":"2021-03-01T00:00:00.000Z","updated":"2022-05-24T00:04:33.061Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-01T23:59:59.000Z","id":"G2276682453-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210301-000000-e20210301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.69 + 0.002 37.738 180","-37.69 -180 37.738 -0.001"],"time_start":"2021-03-02T00:00:01.000Z","updated":"2022-05-24T00:14:34.978Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-02T23:59:59.000Z","id":"G2276684736-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210302-000001-e20210302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.693 + 0.004 37.675 180","-37.693 -180 37.675 -0.001"],"time_start":"2021-03-03T00:00:01.000Z","updated":"2022-05-24T00:25:08.209Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-03T23:59:59.000Z","id":"G2276686939-POCLOUD","original_format":"UMM_JSON","granule_size":"16.266881942749023","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210303-000001-e20210303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.705 + 0 37.665 180","-37.705 -180 37.665 -0.004"],"time_start":"2021-03-04T00:00:01.000Z","updated":"2022-05-24T00:19:40.894Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-04T23:59:59.000Z","id":"G2276685768-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210304-000001-e20210304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.657 + 0.002 37.592 180","-37.657 -180 37.592 -0.001"],"time_start":"2021-03-05T00:00:02.000Z","updated":"2022-05-23T23:53:31.815Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-05T23:59:59.000Z","id":"G2276680317-POCLOUD","original_format":"UMM_JSON","granule_size":"17.388755798339844","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210305-000002-e20210305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.479 + 0 37.625 180","-37.479 -180 37.625 -0.001"],"time_start":"2021-03-06T00:00:02.000Z","updated":"2022-05-24T00:48:25.461Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-06T23:59:59.000Z","id":"G2276692067-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210306-000002-e20210306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0 37.706 180","-37.595 -180 37.706 -0.001"],"time_start":"2021-03-07T00:00:01.000Z","updated":"2022-05-24T00:21:41.677Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-07T23:59:59.000Z","id":"G2276685948-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210307-000001-e20210307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.567 + 0.003 37.627 180","-37.567 -180 37.627 -0.001"],"time_start":"2021-03-08T00:00:01.000Z","updated":"2022-05-24T00:16:35.514Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-08T23:59:59.000Z","id":"G2276685083-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210308-000001-e20210308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.566 + 0.004 37.611 180","-37.566 -180 37.611 -0.001"],"time_start":"2021-03-09T00:00:02.000Z","updated":"2022-05-24T00:19:35.726Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-09T23:59:59.000Z","id":"G2276685749-POCLOUD","original_format":"UMM_JSON","granule_size":"18.419286727905273","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210309-000002-e20210309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.483 + 0 37.532 180","-37.483 -180 37.532 -0.002"],"time_start":"2021-03-10T00:00:01.000Z","updated":"2022-05-23T23:55:38.194Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-10T23:59:59.000Z","id":"G2276680446-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210310-000001-e20210310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.492 + 0.001 37.49 180","-37.492 -180 37.49 -0.003"],"time_start":"2021-03-11T00:00:02.000Z","updated":"2022-05-23T23:51:06.046Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-11T23:59:59.000Z","id":"G2276679835-POCLOUD","original_format":"UMM_JSON","granule_size":"18.879993438720703","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210311-000002-e20210311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.435 + 0.001 37.536 180","-37.435 -180 37.536 0"],"time_start":"2021-03-12T00:00:01.000Z","updated":"2022-05-24T00:14:26.180Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-12T23:59:59.000Z","id":"G2276684712-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210312-000001-e20210312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.51 + 0.001 37.557 180","-37.51 -180 37.557 -0.001"],"time_start":"2021-03-13T00:00:02.000Z","updated":"2022-05-24T00:21:30.721Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-13T23:59:59.000Z","id":"G2276685907-POCLOUD","original_format":"UMM_JSON","granule_size":"17.503446578979492","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210313-000002-e20210313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.494 + 0 37.519 180","-37.494 -180 37.519 -0.001"],"time_start":"2021-03-14T00:00:01.000Z","updated":"2022-05-24T00:12:35.974Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-14T23:59:59.000Z","id":"G2276683993-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210314-000001-e20210314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.414 + 0.001 37.419 180","-37.414 -180 37.419 -0.002"],"time_start":"2021-03-15T00:00:01.000Z","updated":"2022-05-23T23:58:33.708Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-15T23:59:59.000Z","id":"G2276681292-POCLOUD","original_format":"UMM_JSON","granule_size":"18.326745986938477","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210315-000001-e20210315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.548 + 0.006 37.442 180","-37.548 -180 37.442 -0.001"],"time_start":"2021-03-16T00:00:00.000Z","updated":"2022-05-24T00:30:35.865Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-16T23:59:59.000Z","id":"G2276687946-POCLOUD","original_format":"UMM_JSON","granule_size":"17.175352096557617","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210316-000000-e20210316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.561 + 0.005 37.537 180","-37.561 -180 37.537 -0.003"],"time_start":"2021-03-17T00:00:02.000Z","updated":"2022-05-24T00:11:36.527Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-17T23:59:59.000Z","id":"G2276683840-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210317-000002-e20210317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.596 + 0.001 37.627 180","-37.596 -180 37.627 0"],"time_start":"2021-03-18T00:00:01.000Z","updated":"2022-05-24T00:06:35.285Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-18T23:59:59.000Z","id":"G2276682845-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210318-000001-e20210318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0.002 37.564 180","-37.603 -180 37.564 -0.004"],"time_start":"2021-03-19T00:00:00.000Z","updated":"2022-05-23T23:47:58.759Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-19T23:59:58.000Z","id":"G2276678419-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210319-000000-e20210319-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0 37.586 180","-37.623 -180 37.586 -0.001"],"time_start":"2021-03-20T00:00:01.000Z","updated":"2022-05-24T00:07:27.606Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-20T23:59:59.000Z","id":"G2276683085-POCLOUD","original_format":"UMM_JSON","granule_size":"14.90044116973877","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210320-000001-e20210320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.664 + 0.006 37.587 180","-37.664 -180 37.587 -0.002"],"time_start":"2021-03-21T00:00:02.000Z","updated":"2022-05-24T00:35:33.725Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-21T23:59:59.000Z","id":"G2276688812-POCLOUD","original_format":"UMM_JSON","granule_size":"12.247257232666016","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210321-000002-e20210321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.678 + 0.005 37.581 180","-37.678 -180 37.581 -0.006"],"time_start":"2021-03-22T00:00:01.000Z","updated":"2022-05-23T23:50:34.344Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-22T23:59:59.000Z","id":"G2276679776-POCLOUD","original_format":"UMM_JSON","granule_size":"11.427275657653809","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210322-000001-e20210322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0.003 37.466 180","-37.638 -180 37.466 -0.001"],"time_start":"2021-03-23T00:00:01.000Z","updated":"2022-05-23T23:53:33.040Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-23T23:59:58.000Z","id":"G2276680320-POCLOUD","original_format":"UMM_JSON","granule_size":"13.525832176208496","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210323-000001-e20210323-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.677 + 0.003 37.508 180","-37.677 -180 37.508 -0.002"],"time_start":"2021-03-24T00:00:00.000Z","updated":"2022-05-23T23:54:36.281Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-24T23:59:59.000Z","id":"G2276680373-POCLOUD","original_format":"UMM_JSON","granule_size":"15.05886173248291","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210324-000000-e20210324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.698 + 0.004 37.661 180","-37.698 -180 37.661 -0.003"],"time_start":"2021-03-25T00:00:02.000Z","updated":"2022-05-23T23:49:27.666Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-25T23:59:59.000Z","id":"G2276679568-POCLOUD","original_format":"UMM_JSON","granule_size":"14.976591110229492","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210325-000002-e20210325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.822 + 0.001 37.482 180","-37.822 -180 37.482 -0.006"],"time_start":"2021-03-26T00:00:00.000Z","updated":"2022-05-23T23:58:32.875Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-26T23:59:59.000Z","id":"G2276681289-POCLOUD","original_format":"UMM_JSON","granule_size":"14.947120666503906","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210326-000000-e20210326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.704 + 0.006 37.664 180","-37.704 -180 37.664 -0.002"],"time_start":"2021-03-27T00:00:01.000Z","updated":"2022-05-24T00:14:28.806Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-27T23:59:59.000Z","id":"G2276684708-POCLOUD","original_format":"UMM_JSON","granule_size":"15.372686386108398","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210327-000001-e20210327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0 37.764 180","-37.824 -180 37.764 -0.001"],"time_start":"2021-03-28T00:00:02.000Z","updated":"2022-05-23T23:53:29.957Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-28T23:59:59.000Z","id":"G2276680311-POCLOUD","original_format":"UMM_JSON","granule_size":"15.487520217895508","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210328-000002-e20210328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.79 + 0 37.675 180","-37.79 -180 37.675 -0.001"],"time_start":"2021-03-29T00:00:01.000Z","updated":"2022-05-24T00:07:33.949Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-29T23:59:59.000Z","id":"G2276683497-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210329-000001-e20210329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.729 + 0.001 37.631 180","-37.729 -180 37.631 -0.003"],"time_start":"2021-03-30T00:00:00.000Z","updated":"2022-05-23T23:58:42.482Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-30T23:59:59.000Z","id":"G2276681305-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210330-000000-e20210330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.711 + 0 37.63 180","-37.711 -180 37.63 0"],"time_start":"2021-03-31T00:00:02.000Z","updated":"2022-05-24T00:13:27.255Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-03-31T23:59:59.000Z","id":"G2276684579-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210331-000002-e20210331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.691 + 0 37.617 180","-37.691 -180 37.617 0"],"time_start":"2021-04-01T00:00:00.000Z","updated":"2022-05-23T23:54:58.125Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-01T23:59:59.000Z","id":"G2276680387-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210401-000000-e20210401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.713 + 0 37.613 180","-37.713 -180 37.613 0"],"time_start":"2021-04-02T00:00:02.000Z","updated":"2022-05-24T00:08:41.873Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-02T23:59:59.000Z","id":"G2276683639-POCLOUD","original_format":"UMM_JSON","granule_size":"18.326510429382324","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210402-000002-e20210402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.693 + 0 37.62 180","-37.693 -180 37.62 -0.002"],"time_start":"2021-04-03T00:00:01.000Z","updated":"2022-05-24T00:35:38.435Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-03T23:59:59.000Z","id":"G2276688815-POCLOUD","original_format":"UMM_JSON","granule_size":"17.5571231842041","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210403-000001-e20210403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0.002 37.677 180","-37.824 -180 37.677 -0.001"],"time_start":"2021-04-04T00:00:01.000Z","updated":"2022-05-24T00:44:29.444Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-04T23:59:59.000Z","id":"G2276690179-POCLOUD","original_format":"UMM_JSON","granule_size":"18.222862243652344","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210404-000001-e20210404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.827 + 0.004 37.757 180","-37.827 -180 37.757 -0.001"],"time_start":"2021-04-05T00:00:01.000Z","updated":"2022-05-24T00:02:25.191Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-05T23:59:59.000Z","id":"G2276681601-POCLOUD","original_format":"UMM_JSON","granule_size":"17.4321346282959","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210405-000001-e20210405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.837 + 0.001 37.636 180","-37.837 -180 37.636 -0.001"],"time_start":"2021-04-06T00:00:01.000Z","updated":"2022-05-24T00:38:37.023Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-06T23:59:59.000Z","id":"G2276689513-POCLOUD","original_format":"UMM_JSON","granule_size":"18.575078010559082","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210406-000001-e20210406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.759 + 0.001 37.681 180","-37.759 -180 37.681 0"],"time_start":"2021-04-07T00:00:01.000Z","updated":"2022-05-23T23:49:41.010Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-07T23:59:58.000Z","id":"G2276679653-POCLOUD","original_format":"UMM_JSON","granule_size":"18.66001796722412","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210407-000001-e20210407-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.718 + 0.002 37.667 180","-37.718 -180 37.667 -0.002"],"time_start":"2021-04-08T00:00:00.000Z","updated":"2022-05-24T00:01:36.750Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-08T23:59:59.000Z","id":"G2276681553-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210408-000000-e20210408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.727 + 0.002 37.608 180","-37.727 -180 37.608 0"],"time_start":"2021-04-09T00:00:01.000Z","updated":"2022-05-24T00:28:39.006Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-09T23:59:59.000Z","id":"G2276687730-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210409-000001-e20210409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.712 + 0.003 37.787 180","-37.712 -180 37.787 -0.001"],"time_start":"2021-04-10T00:00:02.000Z","updated":"2022-05-23T23:50:39.422Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-10T23:59:59.000Z","id":"G2276679795-POCLOUD","original_format":"UMM_JSON","granule_size":"18.908644676208496","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210410-000002-e20210410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0.001 37.802 180","-37.777 -180 37.802 0"],"time_start":"2021-04-11T00:00:01.000Z","updated":"2022-05-24T00:47:29.274Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-11T23:59:59.000Z","id":"G2276691693-POCLOUD","original_format":"UMM_JSON","granule_size":"18.755043029785156","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210411-000001-e20210411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.771 + 0 37.648 180","-37.771 -180 37.648 -0.006"],"time_start":"2021-04-12T00:00:01.000Z","updated":"2022-05-24T00:32:31.606Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-12T23:59:59.000Z","id":"G2276688091-POCLOUD","original_format":"UMM_JSON","granule_size":"18.398221969604492","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210412-000001-e20210412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.756 + 0.001 37.764 180","-37.756 -180 37.764 -0.001"],"time_start":"2021-04-13T00:00:01.000Z","updated":"2022-05-24T00:30:37.792Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-13T23:59:59.000Z","id":"G2276687949-POCLOUD","original_format":"UMM_JSON","granule_size":"17.33671760559082","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210413-000001-e20210413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.635 + 0.003 37.751 180","-37.635 -180 37.751 -0.002"],"time_start":"2021-04-14T00:00:01.000Z","updated":"2022-05-24T00:15:42.194Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-14T23:59:59.000Z","id":"G2276685014-POCLOUD","original_format":"UMM_JSON","granule_size":"17.169559478759766","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210414-000001-e20210414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.646 + 0.003 37.613 180","-37.646 -180 37.613 0"],"time_start":"2021-04-15T00:00:01.000Z","updated":"2022-05-24T00:03:27.222Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-15T23:59:59.000Z","id":"G2276682022-POCLOUD","original_format":"UMM_JSON","granule_size":"17.21291446685791","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210415-000001-e20210415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.672 + 0.002 37.631 180","-37.672 -180 37.631 -0.001"],"time_start":"2021-04-16T00:00:01.000Z","updated":"2022-05-24T00:22:36.000Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-16T23:59:59.000Z","id":"G2276686571-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210416-000001-e20210416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.685 + 0.002 37.675 180","-37.685 -180 37.675 -0.001"],"time_start":"2021-04-17T00:00:02.000Z","updated":"2022-05-23T23:57:25.357Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-17T23:59:59.000Z","id":"G2276680560-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210417-000002-e20210417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.693 + 0.003 37.678 180","-37.693 -180 37.678 -0.001"],"time_start":"2021-04-18T00:00:02.000Z","updated":"2022-05-24T00:36:33.616Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-18T23:59:59.000Z","id":"G2276688876-POCLOUD","original_format":"UMM_JSON","granule_size":"16.60813331604004","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210418-000002-e20210418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.717 + 0 37.66 180","-37.717 -180 37.66 0"],"time_start":"2021-04-19T00:00:02.000Z","updated":"2022-05-24T00:44:29.513Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-19T23:59:59.000Z","id":"G2276690180-POCLOUD","original_format":"UMM_JSON","granule_size":"16.377704620361328","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210419-000002-e20210419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.78 + 0.002 37.691 180","-37.78 -180 37.691 -0.005"],"time_start":"2021-04-20T00:00:00.000Z","updated":"2022-05-24T00:22:38.648Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-20T23:59:59.000Z","id":"G2276686583-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210420-000000-e20210420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0.001 37.748 180","-37.741 -180 37.748 -0.002"],"time_start":"2021-04-21T00:00:02.000Z","updated":"2022-05-24T00:04:39.437Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-21T23:59:59.000Z","id":"G2276682472-POCLOUD","original_format":"UMM_JSON","granule_size":"16.517958641052246","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210421-000002-e20210421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0.002 37.671 180","-37.695 -180 37.671 -0.003"],"time_start":"2021-04-22T00:00:01.000Z","updated":"2022-05-24T00:26:26.873Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-22T23:59:59.000Z","id":"G2276687088-POCLOUD","original_format":"UMM_JSON","granule_size":"16.136569023132324","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210422-000001-e20210422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.661 + 0.003 37.738 180","-37.661 -180 37.738 -0.003"],"time_start":"2021-04-23T00:00:02.000Z","updated":"2022-05-24T00:46:29.985Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-23T23:59:59.000Z","id":"G2276690881-POCLOUD","original_format":"UMM_JSON","granule_size":"16.932377815246582","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210423-000002-e20210423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.564 + 0 37.701 180","-37.564 -180 37.701 0"],"time_start":"2021-04-24T00:00:01.000Z","updated":"2022-05-24T00:16:27.337Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-24T23:59:59.000Z","id":"G2276685045-POCLOUD","original_format":"UMM_JSON","granule_size":"17.518385887145996","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210424-000001-e20210424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.456 + 0 37.566 180","-37.456 -180 37.566 -0.003"],"time_start":"2021-04-25T00:00:01.000Z","updated":"2022-05-24T00:43:37.820Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-25T23:59:59.000Z","id":"G2276690107-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210425-000001-e20210425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.549 + 0.001 37.542 180","-37.549 -180 37.542 0"],"time_start":"2021-04-26T00:00:01.000Z","updated":"2022-05-24T00:36:28.853Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-26T23:59:59.000Z","id":"G2276688863-POCLOUD","original_format":"UMM_JSON","granule_size":"18.46139430999756","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210426-000001-e20210426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.627 + 0.003 37.445 180","-37.627 -180 37.445 0"],"time_start":"2021-04-27T00:00:00.000Z","updated":"2022-05-24T00:28:36.248Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-27T23:59:59.000Z","id":"G2276687721-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210427-000000-e20210427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.68 + 0.002 37.591 180","-37.68 -180 37.591 -0.002"],"time_start":"2021-04-28T00:00:02.000Z","updated":"2022-05-23T23:50:27.675Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-28T23:59:59.000Z","id":"G2276679762-POCLOUD","original_format":"UMM_JSON","granule_size":"15.687699317932129","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210428-000002-e20210428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.71 + 0.002 37.544 180","-37.71 -180 37.544 -0.005"],"time_start":"2021-04-29T00:00:01.000Z","updated":"2022-05-24T00:02:31.890Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-29T23:59:59.000Z","id":"G2276681618-POCLOUD","original_format":"UMM_JSON","granule_size":"17.4550724029541","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210429-000001-e20210429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.673 + 0.002 37.695 180","-37.673 -180 37.695 -0.004"],"time_start":"2021-04-30T00:00:02.000Z","updated":"2022-05-24T00:34:40.807Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-04-30T23:59:59.000Z","id":"G2276688739-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210430-000002-e20210430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0.001 37.722 180","-37.603 -180 37.722 -0.001"],"time_start":"2021-05-01T00:00:02.000Z","updated":"2022-05-24T00:03:38.577Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-01T23:59:59.000Z","id":"G2276682060-POCLOUD","original_format":"UMM_JSON","granule_size":"18.544322967529297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210501-000002-e20210501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.651 + 0.001 37.639 180","-37.651 -180 37.639 -0.001"],"time_start":"2021-05-02T00:00:01.000Z","updated":"2022-05-24T00:24:38.428Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-02T23:59:59.000Z","id":"G2276686898-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210502-000001-e20210502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.502 + 0.001 37.603 180","-37.502 -180 37.603 -0.002"],"time_start":"2021-05-03T00:00:02.000Z","updated":"2022-05-24T00:05:07.608Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-03T23:59:59.000Z","id":"G2276682578-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210503-000002-e20210503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.576 + 0.001 37.565 180","-37.576 -180 37.565 -0.001"],"time_start":"2021-05-04T00:00:01.000Z","updated":"2022-05-24T00:07:26.181Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-04T23:59:59.000Z","id":"G2276682917-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210504-000001-e20210504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.539 + 0 37.633 180","-37.539 -180 37.633 -0.002"],"time_start":"2021-05-05T00:00:01.000Z","updated":"2022-05-23T23:54:31.749Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-05T23:59:59.000Z","id":"G2276680364-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210505-000001-e20210505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.639 + 0 37.548 180","-37.639 -180 37.548 -0.002"],"time_start":"2021-05-06T00:00:01.000Z","updated":"2022-05-24T00:41:33.319Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-06T23:59:59.000Z","id":"G2276689678-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210506-000001-e20210506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.589 + 0.001 37.519 180","-37.589 -180 37.519 -0.005"],"time_start":"2021-05-07T00:00:01.000Z","updated":"2022-05-24T00:14:28.170Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-07T23:59:59.000Z","id":"G2276684709-POCLOUD","original_format":"UMM_JSON","granule_size":"18.655543327331543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210507-000001-e20210507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.607 + 0 37.482 180","-37.607 -180 37.482 0"],"time_start":"2021-05-08T00:00:01.000Z","updated":"2022-05-24T00:47:37.705Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-08T23:59:59.000Z","id":"G2276691776-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210508-000001-e20210508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.448 + 0.004 37.441 180","-37.448 -180 37.441 0"],"time_start":"2021-05-09T00:00:02.000Z","updated":"2022-05-23T23:59:36.103Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-09T23:59:59.000Z","id":"G2276681353-POCLOUD","original_format":"UMM_JSON","granule_size":"17.515972137451172","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210509-000002-e20210509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.534 + 0.002 37.42 180","-37.534 -180 37.42 -0.002"],"time_start":"2021-05-10T00:00:01.000Z","updated":"2022-05-24T00:14:41.291Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-10T23:59:58.000Z","id":"G2276684777-POCLOUD","original_format":"UMM_JSON","granule_size":"17.529671669006348","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210510-000001-e20210510-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.524 + 0.003 37.463 180","-37.524 -180 37.463 -0.005"],"time_start":"2021-05-11T00:00:01.000Z","updated":"2022-05-24T00:49:33.060Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-11T23:59:59.000Z","id":"G2276692716-POCLOUD","original_format":"UMM_JSON","granule_size":"17.241049766540527","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210511-000001-e20210511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.474 + 0.001 37.39 180","-37.474 -180 37.39 -0.002"],"time_start":"2021-05-12T00:00:02.000Z","updated":"2022-05-24T00:00:36.137Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-12T23:59:59.000Z","id":"G2276681461-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210512-000002-e20210512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0.004 37.35 180","-37.636 -180 37.35 -0.001"],"time_start":"2021-05-13T00:00:01.000Z","updated":"2022-05-23T23:48:02.498Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-13T23:59:59.000Z","id":"G2276678478-POCLOUD","original_format":"UMM_JSON","granule_size":"16.606675148010254","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210513-000001-e20210513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.667 + 0.003 37.409 180","-37.667 -180 37.409 -0.003"],"time_start":"2021-05-14T00:00:00.000Z","updated":"2022-05-24T00:42:39.519Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-14T23:59:59.000Z","id":"G2276690033-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210514-000000-e20210514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.677 + 0.001 37.537 180","-37.677 -180 37.537 -0.001"],"time_start":"2021-05-15T00:00:01.000Z","updated":"2022-05-24T00:04:25.620Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-15T23:59:59.000Z","id":"G2276682431-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210515-000001-e20210515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.721 + 0.002 37.588 180","-37.721 -180 37.588 -0.001"],"time_start":"2021-05-16T00:00:02.000Z","updated":"2022-05-24T00:30:32.751Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-16T23:59:59.000Z","id":"G2276687929-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210516-000002-e20210516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0.003 37.566 180","-37.616 -180 37.566 -0.002"],"time_start":"2021-05-17T00:00:00.000Z","updated":"2022-05-24T00:17:31.351Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-17T23:59:59.000Z","id":"G2276685259-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210517-000000-e20210517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.672 + 0.001 37.459 180","-37.672 -180 37.459 -0.001"],"time_start":"2021-05-18T00:00:01.000Z","updated":"2022-05-24T00:44:33.112Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-18T23:59:59.000Z","id":"G2276690184-POCLOUD","original_format":"UMM_JSON","granule_size":"15.773590087890625","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210518-000001-e20210518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.614 + 0.001 37.544 180","-37.614 -180 37.544 -0.004"],"time_start":"2021-05-19T00:00:02.000Z","updated":"2022-05-24T00:15:39.319Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-19T23:59:59.000Z","id":"G2276685008-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210519-000002-e20210519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.7 + 0 37.581 180","-38.7 -180 37.581 -0.001"],"time_start":"2021-05-20T00:00:01.000Z","updated":"2022-05-24T00:29:37.014Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-20T23:59:59.000Z","id":"G2276687851-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210520-000001-e20210520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.229 + 0.007 37.506 180","-38.229 -180 37.506 -0.001"],"time_start":"2021-05-21T00:00:01.000Z","updated":"2022-05-24T00:25:32.341Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-21T23:59:59.000Z","id":"G2276686982-POCLOUD","original_format":"UMM_JSON","granule_size":"16.469698905944824","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210521-000001-e20210521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38 + 0 37.639 180","-38 -180 37.639 0"],"time_start":"2021-05-22T00:00:01.000Z","updated":"2022-05-24T00:41:30.758Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-22T23:59:59.000Z","id":"G2276689666-POCLOUD","original_format":"UMM_JSON","granule_size":"16.987427711486816","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210522-000001-e20210522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.673 + 0.003 37.799 180","-39.673 -180 37.799 -0.001"],"time_start":"2021-05-23T00:00:01.000Z","updated":"2022-05-24T00:05:37.070Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-23T23:59:58.000Z","id":"G2276682645-POCLOUD","original_format":"UMM_JSON","granule_size":"17.128225326538086","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210523-000001-e20210523-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.755 + 0 37.791 180","-37.755 -180 37.791 -0.001"],"time_start":"2021-05-24T00:00:00.000Z","updated":"2022-05-24T00:42:28.738Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-24T23:59:58.000Z","id":"G2276689948-POCLOUD","original_format":"UMM_JSON","granule_size":"17.10089874267578","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210524-000000-e20210524-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.627 + 0.003 37.794 180","-37.627 -180 37.794 -0.001"],"time_start":"2021-05-25T00:00:01.000Z","updated":"2022-05-24T00:09:34.159Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-25T23:59:59.000Z","id":"G2276683690-POCLOUD","original_format":"UMM_JSON","granule_size":"17.41901206970215","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210525-000001-e20210525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.663 + 0.005 37.779 180","-37.663 -180 37.779 -0.005"],"time_start":"2021-05-26T00:00:01.000Z","updated":"2022-05-24T00:11:31.748Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-26T23:59:59.000Z","id":"G2276683829-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210526-000001-e20210526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.675 + 0.002 37.784 180","-37.675 -180 37.784 0"],"time_start":"2021-05-27T00:00:02.000Z","updated":"2022-05-24T00:12:34.213Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-27T23:59:59.000Z","id":"G2276683941-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210527-000002-e20210527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0 37.628 180","-37.73 -180 37.628 -0.002"],"time_start":"2021-05-28T00:00:02.000Z","updated":"2022-05-23T23:53:33.478Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-28T23:59:59.000Z","id":"G2276680322-POCLOUD","original_format":"UMM_JSON","granule_size":"17.355531692504883","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210528-000002-e20210528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.648 + 0.001 37.698 180","-37.648 -180 37.698 -0.001"],"time_start":"2021-05-29T00:00:02.000Z","updated":"2022-05-24T00:35:41.893Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-29T23:59:59.000Z","id":"G2276688825-POCLOUD","original_format":"UMM_JSON","granule_size":"18.607264518737793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210529-000002-e20210529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.583 + 0 37.716 180","-37.583 -180 37.716 0"],"time_start":"2021-05-30T00:00:01.000Z","updated":"2022-05-24T00:13:27.220Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-30T23:59:59.000Z","id":"G2276684591-POCLOUD","original_format":"UMM_JSON","granule_size":"18.20724868774414","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210530-000001-e20210530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0.001 37.721 180","-37.623 -180 37.721 0"],"time_start":"2021-05-31T00:00:01.000Z","updated":"2022-05-23T23:49:36.224Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-05-31T23:59:59.000Z","id":"G2276679638-POCLOUD","original_format":"UMM_JSON","granule_size":"17.332236289978027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210531-000001-e20210531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.692 + 0.003 37.654 180","-37.692 -180 37.654 0"],"time_start":"2021-06-01T00:00:01.000Z","updated":"2022-05-24T00:00:33.307Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-01T23:59:59.000Z","id":"G2276681455-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210601-000001-e20210601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.789 + 0.001 37.786 180","-37.789 -180 37.786 -0.002"],"time_start":"2021-06-02T00:00:01.000Z","updated":"2022-05-24T00:06:41.669Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-02T23:59:59.000Z","id":"G2276682877-POCLOUD","original_format":"UMM_JSON","granule_size":"18.477121353149414","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210602-000001-e20210602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.764 + 0.001 37.794 180","-37.764 -180 37.794 -0.002"],"time_start":"2021-06-03T00:00:01.000Z","updated":"2022-05-24T00:48:27.649Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-03T23:59:59.000Z","id":"G2276692075-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210603-000001-e20210603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.761 + 0.002 37.766 180","-37.761 -180 37.766 0"],"time_start":"2021-06-04T00:00:01.000Z","updated":"2022-05-24T00:38:43.020Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-04T23:59:59.000Z","id":"G2276689524-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210604-000001-e20210604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0.002 37.743 180","-37.73 -180 37.743 0"],"time_start":"2021-06-05T00:00:01.000Z","updated":"2022-05-24T00:23:36.797Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-05T23:59:59.000Z","id":"G2276686712-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210605-000001-e20210605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.698 + 0.002 37.721 180","-37.698 -180 37.721 -0.002"],"time_start":"2021-06-06T00:00:00.000Z","updated":"2022-05-24T00:14:35.723Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-06T23:59:59.000Z","id":"G2276684742-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210606-000000-e20210606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.759 + 0 37.777 180","-37.759 -180 37.777 0"],"time_start":"2021-06-07T00:00:01.000Z","updated":"2022-05-23T23:50:35.383Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-07T23:59:59.000Z","id":"G2276679781-POCLOUD","original_format":"UMM_JSON","granule_size":"18.63127040863037","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210607-000001-e20210607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.739 + 0.001 37.713 180","-37.739 -180 37.713 -0.001"],"time_start":"2021-06-08T00:00:01.000Z","updated":"2022-05-24T00:21:39.442Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-08T23:59:59.000Z","id":"G2276685973-POCLOUD","original_format":"UMM_JSON","granule_size":"18.551095962524414","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210608-000001-e20210608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.708 + 0.002 37.655 180","-37.708 -180 37.655 0"],"time_start":"2021-06-09T00:00:00.000Z","updated":"2022-05-24T00:02:32.490Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-09T23:59:59.000Z","id":"G2276681622-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210609-000000-e20210609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.724 + 0 37.644 180","-37.724 -180 37.644 0"],"time_start":"2021-06-10T00:00:02.000Z","updated":"2022-05-24T00:10:34.889Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-10T23:59:59.000Z","id":"G2276683763-POCLOUD","original_format":"UMM_JSON","granule_size":"15.319929122924805","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210610-000002-e20210610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.716 + 0.001 37.564 180","-37.716 -180 37.564 -0.003"],"time_start":"2021-06-11T00:00:01.000Z","updated":"2022-05-24T00:18:31.852Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-11T23:59:59.000Z","id":"G2276685627-POCLOUD","original_format":"UMM_JSON","granule_size":"15.557916641235352","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210611-000001-e20210611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.705 + 0.001 37.683 180","-37.705 -180 37.683 0"],"time_start":"2021-06-12T00:00:01.000Z","updated":"2022-05-24T00:17:26.275Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-12T23:59:59.000Z","id":"G2276685252-POCLOUD","original_format":"UMM_JSON","granule_size":"16.863037109375","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210612-000001-e20210612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.726 + 0.003 37.516 180","-37.726 -180 37.516 0"],"time_start":"2021-06-13T00:00:02.000Z","updated":"2022-05-24T00:21:34.047Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-13T23:59:59.000Z","id":"G2276685937-POCLOUD","original_format":"UMM_JSON","granule_size":"17.238978385925293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210613-000002-e20210613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.736 + 0.001 37.653 180","-37.736 -180 37.653 -0.002"],"time_start":"2021-06-14T00:00:00.000Z","updated":"2022-05-24T00:32:41.692Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-14T23:59:59.000Z","id":"G2276688518-POCLOUD","original_format":"UMM_JSON","granule_size":"17.276491165161133","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210614-000000-e20210614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.736 + 0.001 37.504 180","-37.736 -180 37.504 -0.001"],"time_start":"2021-06-15T00:00:02.000Z","updated":"2022-05-23T23:54:30.457Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-15T23:59:59.000Z","id":"G2276680362-POCLOUD","original_format":"UMM_JSON","granule_size":"17.27540397644043","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210615-000002-e20210615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.781 + 0.001 37.54 180","-37.781 -180 37.54 -0.003"],"time_start":"2021-06-16T00:00:01.000Z","updated":"2022-05-24T00:10:31.562Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-16T23:59:59.000Z","id":"G2276683748-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210616-000001-e20210616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.847 + 0.003 37.648 180","-37.847 -180 37.648 -0.001"],"time_start":"2021-06-17T00:00:01.000Z","updated":"2022-05-24T00:23:24.367Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-17T23:59:59.000Z","id":"G2276686658-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210617-000001-e20210617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.833 + 0.003 37.615 180","-37.833 -180 37.615 -0.003"],"time_start":"2021-06-18T00:00:01.000Z","updated":"2022-05-24T00:33:37.454Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-18T23:59:59.000Z","id":"G2276688646-POCLOUD","original_format":"UMM_JSON","granule_size":"15.992960929870605","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210618-000001-e20210618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.773 + 0 37.664 180","-37.773 -180 37.664 -0.004"],"time_start":"2021-06-19T00:00:01.000Z","updated":"2022-05-23T23:48:07.656Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-19T23:59:59.000Z","id":"G2276678516-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210619-000001-e20210619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.735 + 0.001 37.604 180","-37.735 -180 37.604 -0.002"],"time_start":"2021-06-20T00:00:01.000Z","updated":"2022-05-24T00:27:31.510Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-20T23:59:59.000Z","id":"G2276687213-POCLOUD","original_format":"UMM_JSON","granule_size":"17.024133682250977","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210620-000001-e20210620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.709 + 0.004 37.565 180","-37.709 -180 37.565 -0.002"],"time_start":"2021-06-21T00:00:02.000Z","updated":"2022-05-24T00:01:30.945Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-21T23:59:59.000Z","id":"G2276681536-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210621-000002-e20210621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.541 + 0.003 37.506 180","-37.541 -180 37.506 0"],"time_start":"2021-06-22T00:00:01.000Z","updated":"2022-05-24T00:29:31.222Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-22T23:59:59.000Z","id":"G2276687830-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210622-000001-e20210622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.465 + 0.001 37.514 180","-37.465 -180 37.514 0"],"time_start":"2021-06-23T00:00:00.000Z","updated":"2022-05-23T23:57:25.757Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-23T23:59:59.000Z","id":"G2276680562-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210623-000000-e20210623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.543 + 0.001 37.528 180","-37.543 -180 37.528 0"],"time_start":"2021-06-24T00:00:02.000Z","updated":"2022-05-23T23:50:27.162Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-24T23:59:59.000Z","id":"G2276679763-POCLOUD","original_format":"UMM_JSON","granule_size":"14.889019012451172","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210624-000002-e20210624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.002 37.63 180","-37.669 -180 37.63 -0.001"],"time_start":"2021-06-25T00:00:02.000Z","updated":"2022-05-24T00:39:32.937Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-25T23:59:59.000Z","id":"G2276689563-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210625-000002-e20210625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.689 + 0.001 37.564 180","-37.689 -180 37.564 -0.008"],"time_start":"2021-06-26T00:00:01.000Z","updated":"2022-05-24T00:02:36.637Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-26T23:59:59.000Z","id":"G2276681627-POCLOUD","original_format":"UMM_JSON","granule_size":"14.965500831604004","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210626-000001-e20210626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.626 + 0.001 37.699 180","-37.626 -180 37.699 -0.001"],"time_start":"2021-06-27T00:00:02.000Z","updated":"2022-05-24T00:23:34.723Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-27T23:59:59.000Z","id":"G2276686700-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210627-000002-e20210627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.597 + 0.002 37.602 180","-37.597 -180 37.602 -0.008"],"time_start":"2021-06-28T00:00:02.000Z","updated":"2022-05-24T00:44:42.725Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-28T23:59:59.000Z","id":"G2276690223-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210628-000002-e20210628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.653 + 0.003 37.502 180","-37.653 -180 37.502 0"],"time_start":"2021-06-29T00:00:02.000Z","updated":"2022-05-24T00:40:26.938Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-29T23:59:59.000Z","id":"G2276689612-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210629-000002-e20210629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.521 + 0.001 37.573 180","-38.521 -180 37.573 -0.002"],"time_start":"2021-06-30T00:00:01.000Z","updated":"2022-05-24T00:18:08.322Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-06-30T23:59:59.000Z","id":"G2276685597-POCLOUD","original_format":"UMM_JSON","granule_size":"14.655625343322754","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210630-000001-e20210630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.75 + 0.001 37.445 180","-38.75 -180 37.445 -0.001"],"time_start":"2021-07-01T00:00:02.000Z","updated":"2022-05-24T00:14:24.640Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-01T23:59:59.000Z","id":"G2276684703-POCLOUD","original_format":"UMM_JSON","granule_size":"15.32651138305664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210701-000002-e20210701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.768 + 0.001 37.618 180","-37.768 -180 37.618 -0.01"],"time_start":"2021-07-02T00:00:01.000Z","updated":"2022-05-24T00:40:26.619Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-02T23:59:59.000Z","id":"G2276689605-POCLOUD","original_format":"UMM_JSON","granule_size":"14.811271667480469","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210702-000001-e20210702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.589 + 0.004 37.608 180","-37.589 -180 37.608 0"],"time_start":"2021-07-03T00:00:01.000Z","updated":"2022-05-24T00:24:37.626Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-03T23:59:59.000Z","id":"G2276686877-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210703-000001-e20210703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.543 + 0.006 37.561 180","-37.543 -180 37.561 -0.001"],"time_start":"2021-07-04T00:00:01.000Z","updated":"2022-05-24T00:44:39.224Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-04T23:59:59.000Z","id":"G2276690220-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210704-000001-e20210704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.555 + 0.002 37.534 180","-37.555 -180 37.534 -0.003"],"time_start":"2021-07-05T00:00:02.000Z","updated":"2022-05-24T00:37:55.674Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-05T23:59:59.000Z","id":"G2276689426-POCLOUD","original_format":"UMM_JSON","granule_size":"15.27159309387207","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210705-000002-e20210705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.463 + 0 37.401 180","-37.463 -180 37.401 -0.005"],"time_start":"2021-07-06T00:00:00.000Z","updated":"2022-05-24T00:18:06.073Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-06T23:59:59.000Z","id":"G2276685595-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210706-000000-e20210706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.263 + 0.003 37.383 180","-38.263 -180 37.383 -0.003"],"time_start":"2021-07-07T00:00:02.000Z","updated":"2022-05-24T00:11:26.056Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-07T23:59:59.000Z","id":"G2276683815-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210707-000002-e20210707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.043 + 0.003 37.432 180","-38.043 -180 37.432 -0.001"],"time_start":"2021-07-08T00:00:00.000Z","updated":"2022-05-23T23:55:37.191Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-08T23:59:59.000Z","id":"G2276680442-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210708-000000-e20210708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.898 + 0.003 37.462 180","-37.898 -180 37.462 -0.001"],"time_start":"2021-07-09T00:00:00.000Z","updated":"2022-05-24T00:27:25.934Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-09T23:59:59.000Z","id":"G2276687200-POCLOUD","original_format":"UMM_JSON","granule_size":"13.997498512268066","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210709-000000-e20210709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.454 + 0 37.486 180","-37.454 -180 37.486 -0.001"],"time_start":"2021-07-10T00:00:01.000Z","updated":"2022-05-24T00:26:35.705Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-10T23:59:59.000Z","id":"G2276687115-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210710-000001-e20210710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.461 + 0 37.396 180","-37.461 -180 37.396 -0.006"],"time_start":"2021-07-11T00:00:01.000Z","updated":"2022-05-24T00:02:09.039Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-11T23:59:59.000Z","id":"G2276681576-POCLOUD","original_format":"UMM_JSON","granule_size":"16.983485221862793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210711-000001-e20210711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.599 + 0 37.626 180","-37.599 -180 37.626 -0.002"],"time_start":"2021-07-12T00:00:02.000Z","updated":"2022-05-24T00:18:36.228Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-12T23:59:59.000Z","id":"G2276685635-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210712-000002-e20210712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.589 + 0.004 37.631 180","-37.589 -180 37.631 -0.003"],"time_start":"2021-07-13T00:00:02.000Z","updated":"2022-05-24T00:15:40.452Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-13T23:59:59.000Z","id":"G2276685010-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210713-000002-e20210713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.625 + 0.001 37.627 180","-37.625 -180 37.627 -0.001"],"time_start":"2021-07-14T00:00:02.000Z","updated":"2022-05-24T00:36:34.611Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-14T23:59:59.000Z","id":"G2276688878-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210714-000002-e20210714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.596 + 0.002 37.667 180","-37.596 -180 37.667 0"],"time_start":"2021-07-15T00:00:01.000Z","updated":"2022-05-24T00:00:28.515Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-15T23:59:59.000Z","id":"G2276681440-POCLOUD","original_format":"UMM_JSON","granule_size":"17.213690757751465","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210715-000001-e20210715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.574 + 0 37.654 180","-37.574 -180 37.654 -0.003"],"time_start":"2021-07-16T00:00:01.000Z","updated":"2022-05-23T23:48:30.135Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-16T23:59:59.000Z","id":"G2276678961-POCLOUD","original_format":"UMM_JSON","granule_size":"17.50541114807129","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210716-000001-e20210716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.466 + 0.002 37.67 180","-37.466 -180 37.67 -0.003"],"time_start":"2021-07-17T00:00:01.000Z","updated":"2022-05-24T00:02:30.874Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-17T23:59:59.000Z","id":"G2276681615-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210717-000001-e20210717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.577 + 0 37.617 180","-37.577 -180 37.617 0"],"time_start":"2021-07-18T00:00:00.000Z","updated":"2022-05-24T00:26:35.175Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-18T23:59:59.000Z","id":"G2276687114-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210718-000000-e20210718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.509 + 0 37.593 180","-37.509 -180 37.593 -0.001"],"time_start":"2021-07-19T00:00:01.000Z","updated":"2022-05-23T23:54:31.408Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-19T23:59:59.000Z","id":"G2276680363-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210719-000001-e20210719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.775 + 0 37.709 180","-37.775 -180 37.709 -0.001"],"time_start":"2021-07-20T00:00:02.000Z","updated":"2022-05-24T00:32:44.001Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-20T23:59:59.000Z","id":"G2276688544-POCLOUD","original_format":"UMM_JSON","granule_size":"17.171250343322754","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210720-000002-e20210720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.814 + 0 37.692 180","-37.814 -180 37.692 -0.002"],"time_start":"2021-07-21T00:00:01.000Z","updated":"2022-05-24T00:38:42.490Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-21T23:59:59.000Z","id":"G2276689522-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210721-000001-e20210721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0.002 37.722 180","-37.791 -180 37.722 -0.002"],"time_start":"2021-07-22T00:00:01.000Z","updated":"2022-05-24T00:47:29.404Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-22T23:59:59.000Z","id":"G2276691699-POCLOUD","original_format":"UMM_JSON","granule_size":"16.957226753234863","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210722-000001-e20210722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.757 + 0.006 37.766 180","-37.757 -180 37.766 0"],"time_start":"2021-07-23T00:00:00.000Z","updated":"2022-05-24T00:34:31.347Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-23T23:59:59.000Z","id":"G2276688711-POCLOUD","original_format":"UMM_JSON","granule_size":"17.4789981842041","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210723-000000-e20210723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0.005 37.694 180","-37.658 -180 37.694 0"],"time_start":"2021-07-24T00:00:01.000Z","updated":"2022-05-24T00:40:34.498Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-24T23:59:59.000Z","id":"G2276689625-POCLOUD","original_format":"UMM_JSON","granule_size":"18.446123123168945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210724-000001-e20210724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.707 + 0.002 37.678 180","-37.707 -180 37.678 -0.001"],"time_start":"2021-07-25T00:00:01.000Z","updated":"2022-05-24T00:27:30.069Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-25T23:59:59.000Z","id":"G2276687208-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210725-000001-e20210725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0 37.579 180","-37.73 -180 37.579 0"],"time_start":"2021-07-26T00:00:01.000Z","updated":"2022-05-24T00:23:27.996Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-26T23:59:59.000Z","id":"G2276686665-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210726-000001-e20210726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.689 + 0.003 37.596 180","-37.689 -180 37.596 0"],"time_start":"2021-07-27T00:00:00.000Z","updated":"2022-05-24T00:32:40.081Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-27T23:59:59.000Z","id":"G2276688391-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210727-000000-e20210727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0.003 37.609 180","-37.695 -180 37.609 -0.005"],"time_start":"2021-07-28T00:00:00.000Z","updated":"2022-05-24T00:00:32.694Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-28T23:59:59.000Z","id":"G2276681450-POCLOUD","original_format":"UMM_JSON","granule_size":"17.474971771240234","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210728-000000-e20210728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.802 + 0 37.659 180","-37.802 -180 37.659 0"],"time_start":"2021-07-29T00:00:02.000Z","updated":"2022-05-24T00:47:47.954Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-29T23:59:59.000Z","id":"G2276691873-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210729-000002-e20210729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.835 + 0 37.723 180","-37.835 -180 37.723 -0.001"],"time_start":"2021-07-30T00:00:02.000Z","updated":"2022-05-24T00:10:33.837Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-30T23:59:59.000Z","id":"G2276683762-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210730-000002-e20210730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.855 + 0.001 37.709 180","-37.855 -180 37.709 -0.001"],"time_start":"2021-07-31T00:00:01.000Z","updated":"2022-05-24T00:34:44.870Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-07-31T23:59:59.000Z","id":"G2276688746-POCLOUD","original_format":"UMM_JSON","granule_size":"17.50186538696289","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210731-000001-e20210731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.844 + 0.001 37.699 180","-37.844 -180 37.699 -0.005"],"time_start":"2021-08-01T00:00:01.000Z","updated":"2022-05-24T00:41:39.198Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-01T23:59:59.000Z","id":"G2276689686-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210801-000001-e20210801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0 37.667 180","-37.791 -180 37.667 -0.008"],"time_start":"2021-08-02T00:00:02.000Z","updated":"2022-05-24T00:23:34.923Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-02T23:59:59.000Z","id":"G2276686702-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210802-000002-e20210802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.691 + 0.001 37.679 180","-37.691 -180 37.679 -0.001"],"time_start":"2021-08-03T00:00:01.000Z","updated":"2022-05-24T00:17:40.518Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-03T23:59:59.000Z","id":"G2276685277-POCLOUD","original_format":"UMM_JSON","granule_size":"17.477699279785156","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210803-000001-e20210803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.712 + 0.003 37.714 180","-37.712 -180 37.714 0"],"time_start":"2021-08-04T00:00:01.000Z","updated":"2022-05-23T23:48:29.743Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-04T23:59:59.000Z","id":"G2276678943-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210804-000001-e20210804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.716 + 0 37.73 180","-37.716 -180 37.73 -0.002"],"time_start":"2021-08-05T00:00:02.000Z","updated":"2022-05-23T23:59:31.755Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-05T23:59:59.000Z","id":"G2276681341-POCLOUD","original_format":"UMM_JSON","granule_size":"16.852197647094727","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210805-000002-e20210805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0 37.643 180","-37.636 -180 37.643 0"],"time_start":"2021-08-06T00:00:01.000Z","updated":"2022-05-23T23:51:34.210Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-06T23:59:59.000Z","id":"G2276679885-POCLOUD","original_format":"UMM_JSON","granule_size":"15.657018661499023","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210806-000001-e20210806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.77 + 0.003 37.784 180","-37.77 -180 37.784 -0.002"],"time_start":"2021-08-07T00:00:01.000Z","updated":"2022-05-24T00:17:38.497Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-07T23:59:59.000Z","id":"G2276685275-POCLOUD","original_format":"UMM_JSON","granule_size":"16.21849536895752","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210807-000001-e20210807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.604 + 0.002 37.738 180","-37.604 -180 37.738 -0.002"],"time_start":"2021-08-08T00:00:00.000Z","updated":"2022-05-23T23:54:32.577Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-08T23:59:59.000Z","id":"G2276680365-POCLOUD","original_format":"UMM_JSON","granule_size":"16.54017448425293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210808-000000-e20210808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.606 + 0.003 37.596 180","-37.606 -180 37.596 -0.002"],"time_start":"2021-08-09T00:00:01.000Z","updated":"2022-05-24T00:35:29.296Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-09T23:59:59.000Z","id":"G2276688783-POCLOUD","original_format":"UMM_JSON","granule_size":"16.35428237915039","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210809-000001-e20210809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.664 + 0.003 37.539 180","-37.664 -180 37.539 0"],"time_start":"2021-08-10T00:00:02.000Z","updated":"2022-05-23T23:50:37.991Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-10T23:59:59.000Z","id":"G2276679788-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210810-000002-e20210810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.651 + 0 37.686 180","-37.651 -180 37.686 -0.002"],"time_start":"2021-08-11T00:00:01.000Z","updated":"2022-05-24T00:07:25.226Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-11T23:59:58.000Z","id":"G2276683033-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210811-000001-e20210811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.6 + 0.002 37.653 180","-37.6 -180 37.653 -0.001"],"time_start":"2021-08-12T00:00:01.000Z","updated":"2022-05-24T00:44:33.437Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-12T23:59:59.000Z","id":"G2276690185-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210812-000001-e20210812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.775 + 0 37.649 180","-37.775 -180 37.649 -0.001"],"time_start":"2021-08-13T00:00:01.000Z","updated":"2022-05-23T23:54:27.752Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-13T23:59:59.000Z","id":"G2276680356-POCLOUD","original_format":"UMM_JSON","granule_size":"16.735862731933594","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210813-000001-e20210813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.76 + 0 37.789 180","-37.76 -180 37.789 0"],"time_start":"2021-08-14T00:00:02.000Z","updated":"2022-05-24T00:24:30.152Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-14T23:59:59.000Z","id":"G2276686855-POCLOUD","original_format":"UMM_JSON","granule_size":"16.695578575134277","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210814-000002-e20210814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.706 + 0.003 37.698 180","-37.706 -180 37.698 -0.001"],"time_start":"2021-08-15T00:00:01.000Z","updated":"2022-05-24T00:11:26.985Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-15T23:59:59.000Z","id":"G2276683817-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210815-000001-e20210815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0.004 37.725 180","-37.741 -180 37.725 -0.003"],"time_start":"2021-08-16T00:00:02.000Z","updated":"2022-05-24T00:46:36.463Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-16T23:59:59.000Z","id":"G2276690967-POCLOUD","original_format":"UMM_JSON","granule_size":"16.585909843444824","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210816-000002-e20210816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.724 + 0.002 37.699 180","-37.724 -180 37.699 0"],"time_start":"2021-08-17T00:00:02.000Z","updated":"2022-05-24T00:41:30.147Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-17T23:59:59.000Z","id":"G2276689670-POCLOUD","original_format":"UMM_JSON","granule_size":"16.103482246398926","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210817-000002-e20210817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.575 + 0.001 37.756 180","-37.575 -180 37.756 -0.005"],"time_start":"2021-08-18T00:00:01.000Z","updated":"2022-05-23T23:53:35.997Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-18T23:59:59.000Z","id":"G2276680329-POCLOUD","original_format":"UMM_JSON","granule_size":"16.10342502593994","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210818-000001-e20210818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.446 + 0 37.586 180","-37.446 -180 37.586 -0.001"],"time_start":"2021-08-19T00:00:02.000Z","updated":"2022-05-24T00:04:29.495Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-19T23:59:59.000Z","id":"G2276682449-POCLOUD","original_format":"UMM_JSON","granule_size":"16.12617778778076","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210819-000002-e20210819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.469 + 0.005 37.566 180","-37.469 -180 37.566 0"],"time_start":"2021-08-20T00:00:01.000Z","updated":"2022-05-23T23:56:33.033Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-20T23:59:59.000Z","id":"G2276680510-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210820-000001-e20210820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.497 + 0 37.565 180","-37.497 -180 37.565 0"],"time_start":"2021-08-21T00:00:01.000Z","updated":"2022-05-23T23:54:33.849Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-21T23:59:59.000Z","id":"G2276680367-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210821-000001-e20210821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.524 + 0.002 37.655 180","-37.524 -180 37.655 -0.001"],"time_start":"2021-08-22T00:00:02.000Z","updated":"2022-05-24T00:47:29.645Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-22T23:59:59.000Z","id":"G2276691711-POCLOUD","original_format":"UMM_JSON","granule_size":"16.221869468688965","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210822-000002-e20210822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.612 + 0.001 37.58 180","-37.612 -180 37.58 -0.001"],"time_start":"2021-08-23T00:00:01.000Z","updated":"2022-05-24T00:23:37.495Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-23T23:59:59.000Z","id":"G2276686716-POCLOUD","original_format":"UMM_JSON","granule_size":"16.67477035522461","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210823-000001-e20210823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.624 + 0.003 37.687 180","-37.624 -180 37.687 -0.005"],"time_start":"2021-08-24T00:00:01.000Z","updated":"2022-05-24T00:10:37.297Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-24T23:59:59.000Z","id":"G2276683770-POCLOUD","original_format":"UMM_JSON","granule_size":"16.84681797027588","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210824-000001-e20210824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.615 + 0.001 37.694 180","-37.615 -180 37.694 -0.001"],"time_start":"2021-08-25T00:00:01.000Z","updated":"2022-05-24T00:09:36.295Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-25T23:59:59.000Z","id":"G2276683693-POCLOUD","original_format":"UMM_JSON","granule_size":"16.28734302520752","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210825-000001-e20210825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.635 + 0.002 37.693 180","-37.635 -180 37.693 -0.009"],"time_start":"2021-08-26T00:00:02.000Z","updated":"2022-05-24T00:31:26.795Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-26T23:59:59.000Z","id":"G2276688002-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210826-000002-e20210826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.408 + 0 37.547 180","-39.408 -180 37.547 -0.001"],"time_start":"2021-08-27T00:00:01.000Z","updated":"2022-05-24T00:18:34.404Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-27T23:59:59.000Z","id":"G2276685630-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210827-000001-e20210827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.495 + 0.001 37.459 180","-37.495 -180 37.459 0"],"time_start":"2021-08-28T00:00:01.000Z","updated":"2022-05-24T00:19:29.327Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-28T23:59:59.000Z","id":"G2276685733-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210828-000001-e20210828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.509 + 0.002 37.667 180","-37.509 -180 37.667 -0.006"],"time_start":"2021-08-29T00:00:01.000Z","updated":"2022-05-24T00:01:29.245Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-29T23:59:59.000Z","id":"G2276681524-POCLOUD","original_format":"UMM_JSON","granule_size":"16.533578872680664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210829-000001-e20210829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.597 + 0.001 37.632 180","-37.597 -180 37.632 -0.003"],"time_start":"2021-08-30T00:00:02.000Z","updated":"2022-05-24T00:25:31.993Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-30T23:59:59.000Z","id":"G2276686986-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210830-000002-e20210830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.625 + 0.004 37.667 180","-37.625 -180 37.667 -0.001"],"time_start":"2021-08-31T00:00:01.000Z","updated":"2022-05-24T00:36:35.172Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-08-31T23:59:59.000Z","id":"G2276688879-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210831-000001-e20210831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.55 + 0.005 37.522 180","-37.55 -180 37.522 0"],"time_start":"2021-09-01T00:00:01.000Z","updated":"2022-05-24T00:26:31.368Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-01T23:59:59.000Z","id":"G2276687099-POCLOUD","original_format":"UMM_JSON","granule_size":"18.451030731201172","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210901-000001-e20210901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0.002 37.45 180","-37.616 -180 37.45 0"],"time_start":"2021-09-02T00:00:01.000Z","updated":"2022-05-24T00:04:37.013Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-02T23:59:59.000Z","id":"G2276682463-POCLOUD","original_format":"UMM_JSON","granule_size":"16.744946479797363","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210902-000001-e20210902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.581 + 0.001 37.38 180","-37.581 -180 37.38 0"],"time_start":"2021-09-03T00:00:01.000Z","updated":"2022-05-23T23:51:30.659Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-03T23:59:59.000Z","id":"G2276679869-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210903-000001-e20210903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.521 + 0.001 37.421 180","-37.521 -180 37.421 -0.001"],"time_start":"2021-09-04T00:00:02.000Z","updated":"2022-05-24T00:42:29.540Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-04T23:59:59.000Z","id":"G2276689961-POCLOUD","original_format":"UMM_JSON","granule_size":"17.212921142578125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210904-000002-e20210904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.49 + 0 37.422 180","-37.49 -180 37.422 -0.001"],"time_start":"2021-09-05T00:00:01.000Z","updated":"2022-05-24T00:35:31.481Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-05T23:59:59.000Z","id":"G2276688788-POCLOUD","original_format":"UMM_JSON","granule_size":"18.016913414001465","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210905-000001-e20210905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.406 + 0 37.346 180","-37.406 -180 37.346 -0.001"],"time_start":"2021-09-06T00:00:01.000Z","updated":"2022-05-24T00:18:35.612Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-06T23:59:59.000Z","id":"G2276685638-POCLOUD","original_format":"UMM_JSON","granule_size":"16.957194328308105","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210906-000001-e20210906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0.001 37.572 180","-37.644 -180 37.572 -0.001"],"time_start":"2021-09-07T00:00:01.000Z","updated":"2022-05-24T00:45:33.043Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-07T23:59:59.000Z","id":"G2276690266-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210907-000001-e20210907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.62 + 0 37.589 180","-37.62 -180 37.589 -0.002"],"time_start":"2021-09-08T00:00:02.000Z","updated":"2022-05-23T23:48:33.652Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-08T23:59:59.000Z","id":"G2276679017-POCLOUD","original_format":"UMM_JSON","granule_size":"16.986767768859863","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210908-000002-e20210908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.666 + 0.001 37.55 180","-37.666 -180 37.55 -0.001"],"time_start":"2021-09-09T00:00:00.000Z","updated":"2022-05-24T00:19:42.753Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-09T23:59:59.000Z","id":"G2276685774-POCLOUD","original_format":"UMM_JSON","granule_size":"17.16978931427002","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210909-000000-e20210909-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.656 + 0 37.62 180","-37.656 -180 37.62 -0.001"],"time_start":"2021-09-10T00:00:01.000Z","updated":"2022-05-24T00:28:32.096Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-10T23:59:59.000Z","id":"G2276687701-POCLOUD","original_format":"UMM_JSON","granule_size":"16.95036506652832","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210910-000001-e20210910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.608 + 0.003 37.618 180","-37.608 -180 37.618 -0.001"],"time_start":"2021-09-11T00:00:02.000Z","updated":"2022-05-24T00:22:31.384Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-11T23:59:59.000Z","id":"G2276686487-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210911-000002-e20210911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.631 + 0.001 37.551 180","-37.631 -180 37.551 -0.001"],"time_start":"2021-09-12T00:00:01.000Z","updated":"2022-05-23T23:59:32.207Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-12T23:59:59.000Z","id":"G2276681344-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210912-000001-e20210912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.626 + 0.001 37.464 180","-37.626 -180 37.464 -0.001"],"time_start":"2021-09-13T00:00:01.000Z","updated":"2022-05-24T00:06:36.778Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-13T23:59:59.000Z","id":"G2276682872-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210913-000001-e20210913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.659 + 0.001 37.517 180","-37.659 -180 37.517 -0.002"],"time_start":"2021-09-14T00:00:01.000Z","updated":"2022-05-23T23:59:31.075Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-14T23:59:59.000Z","id":"G2276681340-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210914-000001-e20210914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.681 + 0.001 37.695 180","-37.681 -180 37.695 -0.001"],"time_start":"2021-09-15T00:00:01.000Z","updated":"2022-05-24T00:28:26.390Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-15T23:59:59.000Z","id":"G2276687694-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210915-000001-e20210915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.549 + 0.006 37.666 180","-37.549 -180 37.666 -0.002"],"time_start":"2021-09-16T00:00:01.000Z","updated":"2022-05-24T00:13:32.122Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-16T23:59:59.000Z","id":"G2276684593-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210916-000001-e20210916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.793 + 0.001 37.77 180","-37.793 -180 37.77 0"],"time_start":"2021-09-17T00:00:01.000Z","updated":"2022-05-24T00:03:27.243Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-17T23:59:59.000Z","id":"G2276682026-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210917-000001-e20210917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.685 + 0.002 37.802 180","-37.685 -180 37.802 -0.001"],"time_start":"2021-09-18T00:00:01.000Z","updated":"2022-05-24T00:11:38.728Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-18T23:59:59.000Z","id":"G2276683842-POCLOUD","original_format":"UMM_JSON","granule_size":"17.014227867126465","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210918-000001-e20210918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.702 + 0.003 37.778 180","-37.702 -180 37.778 -0.008"],"time_start":"2021-09-19T00:00:01.000Z","updated":"2022-05-24T00:33:28.549Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-19T23:59:59.000Z","id":"G2276688631-POCLOUD","original_format":"UMM_JSON","granule_size":"17.163182258605957","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210919-000001-e20210919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0.005 37.751 180","-37.747 -180 37.751 -0.002"],"time_start":"2021-09-20T00:00:01.000Z","updated":"2022-05-23T23:55:26.696Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-20T23:59:59.000Z","id":"G2276680419-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210920-000001-e20210920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.804 + 0.004 37.674 180","-37.804 -180 37.674 -0.001"],"time_start":"2021-09-21T00:00:02.000Z","updated":"2022-05-24T00:42:39.001Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-21T23:59:59.000Z","id":"G2276690024-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210921-000002-e20210921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.67 + 0.003 37.69 180","-37.67 -180 37.69 -0.002"],"time_start":"2021-09-22T00:00:01.000Z","updated":"2022-05-24T00:38:57.653Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-22T23:59:59.000Z","id":"G2276689530-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210922-000001-e20210922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.622 + 0.001 37.685 180","-37.622 -180 37.685 -0.003"],"time_start":"2021-09-23T00:00:00.000Z","updated":"2022-05-24T00:28:35.547Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-23T23:59:59.000Z","id":"G2276687719-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210923-000000-e20210923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.639 + 0.001 37.727 180","-37.639 -180 37.727 -0.002"],"time_start":"2021-09-24T00:00:02.000Z","updated":"2022-05-24T00:40:43.304Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-24T23:59:59.000Z","id":"G2276689639-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210924-000002-e20210924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.668 + 0 37.698 180","-37.668 -180 37.698 -0.002"],"time_start":"2021-09-25T00:00:02.000Z","updated":"2022-05-24T00:39:40.517Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-25T23:59:59.000Z","id":"G2276689572-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210925-000002-e20210925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.776 + 0 37.699 180","-37.776 -180 37.699 0"],"time_start":"2021-09-26T00:00:00.000Z","updated":"2022-05-24T00:16:32.214Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-26T23:59:59.000Z","id":"G2276685052-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210926-000000-e20210926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.664 + 0.003 37.809 180","-37.664 -180 37.809 -0.001"],"time_start":"2021-09-27T00:00:01.000Z","updated":"2022-05-24T00:08:30.769Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-27T23:59:59.000Z","id":"G2276683592-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210927-000001-e20210927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.74 + 0.001 37.766 180","-37.74 -180 37.766 -0.001"],"time_start":"2021-09-28T00:00:01.000Z","updated":"2022-05-24T00:20:33.523Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-28T23:59:59.000Z","id":"G2276685816-POCLOUD","original_format":"UMM_JSON","granule_size":"16.960055351257324","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210928-000001-e20210928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.683 + 0.004 37.677 180","-37.683 -180 37.677 -0.003"],"time_start":"2021-09-29T00:00:01.000Z","updated":"2022-05-24T00:48:33.243Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-29T23:59:59.000Z","id":"G2276692108-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210929-000001-e20210929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.712 + 0 37.625 180","-37.712 -180 37.625 -0.001"],"time_start":"2021-09-30T00:00:02.000Z","updated":"2022-05-23T23:55:32.708Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-09-30T23:59:59.000Z","id":"G2276680432-POCLOUD","original_format":"UMM_JSON","granule_size":"17.245283126831055","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20210930-000002-e20210930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.745 + 0 37.794 180","-37.745 -180 37.794 -0.003"],"time_start":"2021-10-01T00:00:01.000Z","updated":"2022-05-24T00:12:34.802Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-01T23:59:59.000Z","id":"G2276683947-POCLOUD","original_format":"UMM_JSON","granule_size":"17.255233764648438","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211001-000001-e20211001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.787 + 0.001 37.839 180","-37.787 -180 37.839 0"],"time_start":"2021-10-02T00:00:00.000Z","updated":"2022-05-23T23:58:30.199Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-02T23:59:59.000Z","id":"G2276681283-POCLOUD","original_format":"UMM_JSON","granule_size":"17.093692779541016","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211002-000000-e20211002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0 37.827 180","-37.695 -180 37.827 -0.002"],"time_start":"2021-10-03T00:00:01.000Z","updated":"2022-05-24T00:49:27.552Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-03T23:59:59.000Z","id":"G2276692597-POCLOUD","original_format":"UMM_JSON","granule_size":"16.831295013427734","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211003-000001-e20211003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.781 + 0 37.767 180","-37.781 -180 37.767 -0.001"],"time_start":"2021-10-04T00:00:02.000Z","updated":"2022-05-24T00:01:34.960Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-04T23:59:59.000Z","id":"G2276681545-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211004-000002-e20211004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.779 + 0 37.694 180","-37.779 -180 37.694 -0.001"],"time_start":"2021-10-05T00:00:02.000Z","updated":"2022-05-24T00:14:38.431Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-05T23:59:59.000Z","id":"G2276684751-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211005-000002-e20211005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.71 + 0.002 37.566 180","-37.71 -180 37.566 -0.001"],"time_start":"2021-10-06T00:00:01.000Z","updated":"2022-05-24T00:27:29.304Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-06T23:59:59.000Z","id":"G2276687207-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211006-000001-e20211006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.63 + 0 37.523 180","-37.63 -180 37.523 -0.003"],"time_start":"2021-10-07T00:00:01.000Z","updated":"2022-05-24T00:22:28.962Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-07T23:59:59.000Z","id":"G2276686312-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211007-000001-e20211007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.64 + 0.001 37.668 180","-37.64 -180 37.668 -0.001"],"time_start":"2021-10-08T00:00:01.000Z","updated":"2022-05-23T23:52:36.060Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-08T23:59:59.000Z","id":"G2276680264-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211008-000001-e20211008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.618 + 0.001 37.565 180","-37.618 -180 37.565 -0.002"],"time_start":"2021-10-09T00:00:01.000Z","updated":"2022-05-24T00:15:32.396Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-09T23:59:59.000Z","id":"G2276684994-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211009-000001-e20211009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.762 + 0.002 37.591 180","-37.762 -180 37.591 -0.001"],"time_start":"2021-10-10T00:00:01.000Z","updated":"2022-05-24T00:33:36.114Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-10T23:59:59.000Z","id":"G2276688642-POCLOUD","original_format":"UMM_JSON","granule_size":"16.14230251312256","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211010-000001-e20211010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.826 + 0.001 37.617 180","-37.826 -180 37.617 -0.001"],"time_start":"2021-10-11T00:00:01.000Z","updated":"2022-05-24T00:35:30.117Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-11T23:59:59.000Z","id":"G2276688794-POCLOUD","original_format":"UMM_JSON","granule_size":"16.238383293151855","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211011-000001-e20211011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.786 + 0.001 37.554 180","-37.786 -180 37.554 -0.001"],"time_start":"2021-10-12T00:00:02.000Z","updated":"2022-05-23T23:58:28.770Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-12T23:59:59.000Z","id":"G2276681278-POCLOUD","original_format":"UMM_JSON","granule_size":"16.208744049072266","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211012-000002-e20211012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.79 + 0 37.723 180","-37.79 -180 37.723 -0.004"],"time_start":"2021-10-13T00:00:01.000Z","updated":"2022-05-23T23:52:34.251Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-13T23:59:59.000Z","id":"G2276680258-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211013-000001-e20211013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.754 + 0.001 37.679 180","-37.754 -180 37.679 0"],"time_start":"2021-10-14T00:00:01.000Z","updated":"2022-05-23T23:57:32.072Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-14T23:59:59.000Z","id":"G2276680578-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211014-000001-e20211014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.688 + 0.003 37.505 180","-37.688 -180 37.505 -0.001"],"time_start":"2021-10-15T00:00:00.000Z","updated":"2022-05-24T00:22:38.713Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-15T23:59:59.000Z","id":"G2276686580-POCLOUD","original_format":"UMM_JSON","granule_size":"16.323081970214844","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211015-000000-e20211015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.748 + 0.005 37.49 180","-37.748 -180 37.49 0"],"time_start":"2021-10-16T00:00:01.000Z","updated":"2022-05-23T23:55:42.030Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-16T23:59:59.000Z","id":"G2276680454-POCLOUD","original_format":"UMM_JSON","granule_size":"16.57758617401123","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211016-000001-e20211016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.543 + 0.002 37.457 180","-37.543 -180 37.457 0"],"time_start":"2021-10-17T00:00:01.000Z","updated":"2022-05-24T00:17:32.450Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-17T23:59:59.000Z","id":"G2276685266-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211017-000001-e20211017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.533 + 0.001 37.5 180","-37.533 -180 37.5 -0.002"],"time_start":"2021-10-18T00:00:01.000Z","updated":"2022-05-24T00:34:28.713Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-18T23:59:59.000Z","id":"G2276688709-POCLOUD","original_format":"UMM_JSON","granule_size":"16.83702278137207","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211018-000001-e20211018-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.656 + 0.005 37.525 180","-37.656 -180 37.525 -0.001"],"time_start":"2021-10-19T00:00:02.000Z","updated":"2022-05-24T00:36:31.770Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-19T23:59:59.000Z","id":"G2276688874-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211019-000002-e20211019-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.642 + 0.003 37.607 180","-37.642 -180 37.607 -0.001"],"time_start":"2021-10-20T00:00:01.000Z","updated":"2022-05-24T00:42:25.787Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-20T23:59:59.000Z","id":"G2276689745-POCLOUD","original_format":"UMM_JSON","granule_size":"16.212732315063477","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211020-000001-e20211020-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.617 + 0.002 37.605 180","-37.617 -180 37.605 0"],"time_start":"2021-10-21T00:00:01.000Z","updated":"2022-05-23T23:53:35.338Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-21T23:59:59.000Z","id":"G2276680327-POCLOUD","original_format":"UMM_JSON","granule_size":"17.039250373840332","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211021-000001-e20211021-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.738 + 0.001 37.641 180","-37.738 -180 37.641 -0.001"],"time_start":"2021-10-22T00:00:01.000Z","updated":"2022-05-23T23:53:33.449Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-22T23:59:59.000Z","id":"G2276680326-POCLOUD","original_format":"UMM_JSON","granule_size":"16.842567443847656","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211022-000001-e20211022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.698 + 0 37.622 180","-37.698 -180 37.622 -0.001"],"time_start":"2021-10-23T00:00:01.000Z","updated":"2022-05-24T00:32:37.050Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-23T23:59:59.000Z","id":"G2276688173-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211023-000001-e20211023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.715 + 0 37.541 180","-37.715 -180 37.541 -0.006"],"time_start":"2021-10-24T00:00:02.000Z","updated":"2022-05-24T00:12:25.666Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-24T23:59:59.000Z","id":"G2276683925-POCLOUD","original_format":"UMM_JSON","granule_size":"16.55088520050049","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211024-000002-e20211024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.577 + 0.002 37.624 180","-37.577 -180 37.624 -0.003"],"time_start":"2021-10-25T00:00:01.000Z","updated":"2022-05-24T00:18:32.175Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-25T23:59:59.000Z","id":"G2276685623-POCLOUD","original_format":"UMM_JSON","granule_size":"16.429561614990234","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211025-000001-e20211025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.528 + 0.003 37.54 180","-37.528 -180 37.54 0"],"time_start":"2021-10-26T00:00:01.000Z","updated":"2022-05-24T00:21:39.309Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-26T23:59:59.000Z","id":"G2276685958-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211026-000001-e20211026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.591 + 0.006 37.543 180","-37.591 -180 37.543 -0.004"],"time_start":"2021-10-27T00:00:00.000Z","updated":"2022-05-24T00:26:37.538Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-27T23:59:59.000Z","id":"G2276687128-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211027-000000-e20211027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.67 + 0.001 37.514 180","-37.67 -180 37.514 -0.003"],"time_start":"2021-10-28T00:00:01.000Z","updated":"2022-05-24T00:40:29.654Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-28T23:59:59.000Z","id":"G2276689615-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211028-000001-e20211028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.577 + 0.005 37.436 180","-37.577 -180 37.436 -0.006"],"time_start":"2021-10-29T00:00:01.000Z","updated":"2022-05-23T23:57:30.173Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-29T23:59:59.000Z","id":"G2276680571-POCLOUD","original_format":"UMM_JSON","granule_size":"17.7559814453125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211029-000001-e20211029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.556 + 0.001 37.485 180","-37.556 -180 37.485 0"],"time_start":"2021-10-30T00:00:02.000Z","updated":"2022-05-24T00:33:40.055Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-30T23:59:59.000Z","id":"G2276688658-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211030-000002-e20211030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.478 + 0.007 37.502 180","-37.478 -180 37.502 -0.002"],"time_start":"2021-10-31T00:00:01.000Z","updated":"2022-05-23T23:48:29.489Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-10-31T23:59:59.000Z","id":"G2276678933-POCLOUD","original_format":"UMM_JSON","granule_size":"16.944680213928223","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211031-000001-e20211031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.422 + 0.004 37.41 180","-37.422 -180 37.41 0"],"time_start":"2021-11-01T00:00:02.000Z","updated":"2022-05-24T00:04:38.858Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-01T23:59:59.000Z","id":"G2276682471-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211101-000002-e20211101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.4 + 0.002 37.453 180","-37.4 -180 37.453 0"],"time_start":"2021-11-02T00:00:01.000Z","updated":"2022-05-24T00:46:29.141Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-02T23:59:59.000Z","id":"G2276690866-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211102-000001-e20211102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.39 + 0.002 37.413 180","-37.39 -180 37.413 -0.002"],"time_start":"2021-11-03T00:00:01.000Z","updated":"2022-05-24T00:48:31.768Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-03T23:59:59.000Z","id":"G2276692184-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211103-000001-e20211103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.521 + 0 39.008 180","-37.521 -180 39.008 -0.001"],"time_start":"2021-11-04T00:00:01.000Z","updated":"2022-05-23T23:54:25.158Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-04T23:59:59.000Z","id":"G2276680348-POCLOUD","original_format":"UMM_JSON","granule_size":"16.138880729675293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211104-000001-e20211104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.64 + 0 39.16 180","-37.64 -180 39.16 -0.001"],"time_start":"2021-11-05T00:00:01.000Z","updated":"2022-05-24T00:05:31.266Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-05T23:59:59.000Z","id":"G2276682633-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211105-000001-e20211105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.533 + 0.001 38.316 180","-37.533 -180 38.316 -0.003"],"time_start":"2021-11-06T00:00:02.000Z","updated":"2022-05-24T00:27:29.052Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-06T23:59:59.000Z","id":"G2276687205-POCLOUD","original_format":"UMM_JSON","granule_size":"15.795912742614746","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211106-000002-e20211106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.536 + 0 37.987 180","-37.536 -180 37.987 -0.003"],"time_start":"2021-11-07T00:00:02.000Z","updated":"2022-05-24T00:30:31.263Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-07T23:59:59.000Z","id":"G2276687923-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211107-000002-e20211107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.522 + 0 39.052 180","-37.522 -180 39.052 0"],"time_start":"2021-11-08T00:00:01.000Z","updated":"2022-05-24T00:29:29.146Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-08T23:59:59.000Z","id":"G2276687823-POCLOUD","original_format":"UMM_JSON","granule_size":"14.602792739868164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211108-000001-e20211108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.578 + 0.001 38.703 180","-37.578 -180 38.703 -0.001"],"time_start":"2021-11-09T00:00:02.000Z","updated":"2022-05-23T23:59:32.758Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-09T23:59:59.000Z","id":"G2276681347-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211109-000002-e20211109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.559 + 0.002 37.696 180","-37.559 -180 37.696 -0.001"],"time_start":"2021-11-10T00:00:01.000Z","updated":"2022-05-24T00:05:31.900Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-10T23:59:59.000Z","id":"G2276682629-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211110-000001-e20211110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.612 + 0.001 37.655 180","-37.612 -180 37.655 0"],"time_start":"2021-11-11T00:00:02.000Z","updated":"2022-05-24T00:12:40.137Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-11T23:59:59.000Z","id":"G2276684287-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211111-000002-e20211111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.551 + 0.005 37.642 180","-37.551 -180 37.642 -0.001"],"time_start":"2021-11-12T00:00:01.000Z","updated":"2022-05-24T00:15:43.219Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-12T23:59:59.000Z","id":"G2276685013-POCLOUD","original_format":"UMM_JSON","granule_size":"16.92326545715332","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211112-000001-e20211112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.696 + 0 40.186 180","-37.696 -180 40.186 -0.001"],"time_start":"2021-11-13T00:00:01.000Z","updated":"2022-05-24T00:12:40.017Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-13T23:59:59.000Z","id":"G2276684511-POCLOUD","original_format":"UMM_JSON","granule_size":"17.052873611450195","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211113-000001-e20211113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.875 + 0.001 37.772 180","-37.875 -180 37.772 -0.002"],"time_start":"2021-11-14T00:00:01.000Z","updated":"2022-05-24T00:48:35.512Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-14T23:59:59.000Z","id":"G2276692114-POCLOUD","original_format":"UMM_JSON","granule_size":"17.002015113830566","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211114-000001-e20211114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.654 + 0 37.754 180","-37.654 -180 37.754 -0.005"],"time_start":"2021-11-15T00:00:02.000Z","updated":"2022-05-24T00:48:26.593Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-15T23:59:59.000Z","id":"G2276692076-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211115-000002-e20211115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0.001 37.803 180","-37.75 -180 37.803 -0.002"],"time_start":"2021-11-16T00:00:01.000Z","updated":"2022-05-24T00:25:28.343Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-16T23:59:59.000Z","id":"G2276686974-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211116-000001-e20211116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.83 + 0.003 37.688 180","-37.83 -180 37.688 -0.017"],"time_start":"2021-11-17T00:00:02.000Z","updated":"2022-05-24T00:20:33.182Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-17T23:59:59.000Z","id":"G2276685813-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211117-000002-e20211117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0.002 37.675 180","-37.73 -180 37.675 0"],"time_start":"2021-11-18T00:00:00.000Z","updated":"2022-05-24T00:32:28.356Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-18T23:59:58.000Z","id":"G2276688082-POCLOUD","original_format":"UMM_JSON","granule_size":"15.483841896057129","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211118-000000-e20211118-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.679 + 0.002 37.738 180","-37.679 -180 37.738 0"],"time_start":"2021-11-19T00:00:02.000Z","updated":"2022-05-23T23:58:35.284Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-19T23:59:59.000Z","id":"G2276681295-POCLOUD","original_format":"UMM_JSON","granule_size":"17.200648307800293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211119-000002-e20211119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.679 + 0.001 37.657 180","-37.679 -180 37.657 -0.001"],"time_start":"2021-11-20T00:00:02.000Z","updated":"2022-05-24T00:41:30.438Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-20T23:59:59.000Z","id":"G2276689668-POCLOUD","original_format":"UMM_JSON","granule_size":"18.22383213043213","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211120-000002-e20211120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.708 + 0.002 37.656 180","-37.708 -180 37.656 -0.001"],"time_start":"2021-11-21T00:00:01.000Z","updated":"2022-05-24T00:22:31.498Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-21T23:59:59.000Z","id":"G2276686517-POCLOUD","original_format":"UMM_JSON","granule_size":"17.880257606506348","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211121-000001-e20211121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.703 + 0.005 37.547 180","-37.703 -180 37.547 -0.001"],"time_start":"2021-11-22T00:00:01.000Z","updated":"2022-05-24T00:25:37.636Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-22T23:59:59.000Z","id":"G2276687006-POCLOUD","original_format":"UMM_JSON","granule_size":"16.984088897705078","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211122-000001-e20211122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.872 + 0 37.648 180","-37.872 -180 37.648 -0.004"],"time_start":"2021-11-23T00:00:01.000Z","updated":"2022-05-24T00:29:27.174Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-23T23:59:59.000Z","id":"G2276687812-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211123-000001-e20211123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0 37.652 180","-37.777 -180 37.652 -0.001"],"time_start":"2021-11-24T00:00:02.000Z","updated":"2022-05-24T00:38:39.403Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-24T23:59:59.000Z","id":"G2276689514-POCLOUD","original_format":"UMM_JSON","granule_size":"17.017186164855957","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211124-000002-e20211124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.807 + 0.004 37.555 180","-37.807 -180 37.555 0"],"time_start":"2021-11-25T00:00:02.000Z","updated":"2022-05-24T00:38:27.997Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-25T23:59:58.000Z","id":"G2276689497-POCLOUD","original_format":"UMM_JSON","granule_size":"16.81424617767334","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211125-000002-e20211125-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.784 + 0.005 37.58 180","-37.784 -180 37.58 0"],"time_start":"2021-11-26T00:00:01.000Z","updated":"2022-05-24T00:44:37.287Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-26T23:59:59.000Z","id":"G2276690188-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211126-000001-e20211126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.739 + 0 37.628 180","-37.739 -180 37.628 -0.001"],"time_start":"2021-11-27T00:00:01.000Z","updated":"2022-05-23T23:59:34.265Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-27T23:59:59.000Z","id":"G2276681349-POCLOUD","original_format":"UMM_JSON","granule_size":"17.000433921813965","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211127-000001-e20211127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.824 + 0.001 37.745 180","-37.824 -180 37.745 -0.001"],"time_start":"2021-11-28T00:00:02.000Z","updated":"2022-05-23T23:54:29.567Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-28T23:59:59.000Z","id":"G2276680360-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211128-000002-e20211128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.819 + 0 37.747 180","-37.819 -180 37.747 -0.001"],"time_start":"2021-11-29T00:00:01.000Z","updated":"2022-05-24T00:19:57.155Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-29T23:59:59.000Z","id":"G2276685791-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211129-000001-e20211129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.779 + 0.002 37.779 180","-37.779 -180 37.779 -0.006"],"time_start":"2021-11-30T00:00:01.000Z","updated":"2022-05-23T23:50:23.607Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-11-30T23:59:59.000Z","id":"G2276679757-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211130-000001-e20211130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.814 + 0.001 37.717 180","-37.814 -180 37.717 -0.004"],"time_start":"2021-12-01T00:00:01.000Z","updated":"2022-05-24T00:29:29.243Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-01T23:59:59.000Z","id":"G2276687813-POCLOUD","original_format":"UMM_JSON","granule_size":"16.319525718688965","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211201-000001-e20211201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.776 + 0.002 37.737 180","-37.776 -180 37.737 0"],"time_start":"2021-12-02T00:00:01.000Z","updated":"2022-05-24T00:47:26.400Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-02T23:59:59.000Z","id":"G2276691432-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211202-000001-e20211202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.801 + 0 37.742 180","-37.801 -180 37.742 -0.002"],"time_start":"2021-12-03T00:00:01.000Z","updated":"2022-05-24T00:22:32.085Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-03T23:59:59.000Z","id":"G2276686514-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211203-000001-e20211203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.1 + 0 37.486 180","-38.1 -180 37.486 0"],"time_start":"2021-12-04T00:00:01.000Z","updated":"2022-05-23T23:48:27.649Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-04T23:59:59.000Z","id":"G2276678894-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211204-000001-e20211204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.655 + 0 37.541 180","-37.655 -180 37.541 -0.003"],"time_start":"2021-12-05T00:00:02.000Z","updated":"2022-05-24T00:45:32.325Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-05T23:59:59.000Z","id":"G2276690262-POCLOUD","original_format":"UMM_JSON","granule_size":"15.249676704406738","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211205-000002-e20211205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.655 + 0.003 37.623 180","-37.655 -180 37.623 -0.002"],"time_start":"2021-12-06T00:00:01.000Z","updated":"2022-05-24T00:35:41.693Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-06T23:59:59.000Z","id":"G2276688824-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211206-000001-e20211206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.737 + 0.002 37.575 180","-37.737 -180 37.575 -0.001"],"time_start":"2021-12-07T00:00:01.000Z","updated":"2022-05-24T00:11:25.918Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-07T23:59:59.000Z","id":"G2276683812-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211207-000001-e20211207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.751 + 0.003 37.657 180","-37.751 -180 37.657 -0.002"],"time_start":"2021-12-08T00:00:01.000Z","updated":"2022-05-24T00:41:24.293Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-08T23:59:59.000Z","id":"G2276689657-POCLOUD","original_format":"UMM_JSON","granule_size":"15.508696556091309","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211208-000001-e20211208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.739 + 0.001 37.729 180","-37.739 -180 37.729 -0.002"],"time_start":"2021-12-09T00:00:01.000Z","updated":"2022-05-24T00:28:30.574Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-09T23:59:59.000Z","id":"G2276687735-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211209-000001-e20211209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.764 + 0 37.772 180","-37.764 -180 37.772 -0.001"],"time_start":"2021-12-10T00:00:01.000Z","updated":"2022-05-24T00:28:35.634Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-10T23:59:59.000Z","id":"G2276687733-POCLOUD","original_format":"UMM_JSON","granule_size":"16.034056663513184","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211210-000001-e20211210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.683 + 0.001 37.684 180","-37.683 -180 37.684 0"],"time_start":"2021-12-11T00:00:01.000Z","updated":"2022-05-24T00:46:33.665Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-11T23:59:59.000Z","id":"G2276690961-POCLOUD","original_format":"UMM_JSON","granule_size":"15.94948673248291","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211211-000001-e20211211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.702 + 0 37.71 180","-37.702 -180 37.71 0"],"time_start":"2021-12-12T00:00:01.000Z","updated":"2022-05-24T00:34:37.072Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-12T23:59:59.000Z","id":"G2276688734-POCLOUD","original_format":"UMM_JSON","granule_size":"15.645852088928223","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211212-000001-e20211212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0 37.626 180","-37.632 -180 37.626 -0.002"],"time_start":"2021-12-13T00:00:02.000Z","updated":"2022-05-24T00:29:30.382Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-13T23:59:59.000Z","id":"G2276687824-POCLOUD","original_format":"UMM_JSON","granule_size":"15.779692649841309","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211213-000002-e20211213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.464 + 0.001 37.438 180","-37.464 -180 37.438 -0.002"],"time_start":"2021-12-14T00:00:01.000Z","updated":"2022-05-23T23:57:31.642Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-14T23:59:59.000Z","id":"G2276680574-POCLOUD","original_format":"UMM_JSON","granule_size":"15.986541748046875","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211214-000001-e20211214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.53 + 0.001 37.473 180","-37.53 -180 37.473 -0.001"],"time_start":"2021-12-15T00:00:00.000Z","updated":"2022-05-24T00:00:30.842Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-15T23:59:59.000Z","id":"G2276681456-POCLOUD","original_format":"UMM_JSON","granule_size":"15.80586051940918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211215-000000-e20211215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.534 + 0.002 37.543 180","-37.534 -180 37.543 -0.001"],"time_start":"2021-12-16T00:00:01.000Z","updated":"2022-05-23T23:53:29.591Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-16T23:59:59.000Z","id":"G2276680312-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211216-000001-e20211216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.553 + 0 37.568 180","-37.553 -180 37.568 -0.003"],"time_start":"2021-12-17T00:00:01.000Z","updated":"2022-05-23T23:56:30.371Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-17T23:59:59.000Z","id":"G2276680501-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211217-000001-e20211217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.654 + 0.002 37.624 180","-37.654 -180 37.624 0"],"time_start":"2021-12-18T00:00:02.000Z","updated":"2022-05-24T00:11:27.039Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-18T23:59:59.000Z","id":"G2276683816-POCLOUD","original_format":"UMM_JSON","granule_size":"15.389185905456543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211218-000002-e20211218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.651 + 0 37.759 180","-37.651 -180 37.759 -0.002"],"time_start":"2021-12-19T00:00:01.000Z","updated":"2022-05-24T00:38:27.120Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-19T23:59:59.000Z","id":"G2276689494-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211219-000001-e20211219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0.002 37.88 180","-37.644 -180 37.88 -0.001"],"time_start":"2021-12-20T00:00:01.000Z","updated":"2022-05-24T00:37:56.361Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-20T23:59:59.000Z","id":"G2276689427-POCLOUD","original_format":"UMM_JSON","granule_size":"15.460310935974121","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211220-000001-e20211220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.615 + 0.001 38.245 180","-37.615 -180 38.245 -0.002"],"time_start":"2021-12-21T00:00:02.000Z","updated":"2022-05-24T00:06:30.170Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-21T23:59:59.000Z","id":"G2276682829-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211221-000002-e20211221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.513 + 0.002 39.751 180","-37.513 -180 39.751 0"],"time_start":"2021-12-22T00:00:01.000Z","updated":"2022-05-24T00:47:29.405Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-22T23:59:59.000Z","id":"G2276691688-POCLOUD","original_format":"UMM_JSON","granule_size":"15.185659408569336","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211222-000001-e20211222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.374 + 0.002 38.843 180","-37.374 -180 38.843 -0.001"],"time_start":"2021-12-23T00:00:01.000Z","updated":"2022-05-23T23:56:37.660Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-23T23:59:59.000Z","id":"G2276680530-POCLOUD","original_format":"UMM_JSON","granule_size":"14.478779792785645","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211223-000001-e20211223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.47 + 0 38.542 180","-37.47 -180 38.542 0"],"time_start":"2021-12-24T00:00:00.000Z","updated":"2022-05-24T00:09:29.225Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-24T23:59:59.000Z","id":"G2276683667-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211224-000000-e20211224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.454 + 0.001 38.396 180","-37.454 -180 38.396 -0.002"],"time_start":"2021-12-25T00:00:02.000Z","updated":"2022-05-23T23:58:26.433Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-25T23:59:59.000Z","id":"G2276681275-POCLOUD","original_format":"UMM_JSON","granule_size":"14.15572452545166","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211225-000002-e20211225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.497 + 0.004 37.457 180","-37.497 -180 37.457 -0.008"],"time_start":"2021-12-26T00:00:01.000Z","updated":"2022-05-23T23:51:29.284Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-26T23:59:59.000Z","id":"G2276679859-POCLOUD","original_format":"UMM_JSON","granule_size":"14.186062812805176","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211226-000001-e20211226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.558 + 0.003 37.371 180","-37.558 -180 37.371 0"],"time_start":"2021-12-27T00:00:01.000Z","updated":"2022-05-24T00:06:25.909Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-27T23:59:59.000Z","id":"G2276682827-POCLOUD","original_format":"UMM_JSON","granule_size":"14.176833152770996","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211227-000001-e20211227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.5 + 0.001 39.224 180","-37.5 -180 39.224 -0.002"],"time_start":"2021-12-28T00:00:01.000Z","updated":"2022-05-24T00:10:30.719Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-28T23:59:59.000Z","id":"G2276683746-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211228-000001-e20211228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.426 + 0.001 38.162 180","-37.426 -180 38.162 0"],"time_start":"2021-12-29T00:00:01.000Z","updated":"2022-05-24T00:27:33.081Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-29T23:59:58.000Z","id":"G2276687228-POCLOUD","original_format":"UMM_JSON","granule_size":"15.069210052490234","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211229-000001-e20211229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.377 + 0.001 39.798 180","-37.377 -180 39.798 -0.007"],"time_start":"2021-12-30T00:00:02.000Z","updated":"2022-05-24T00:08:25.431Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-30T23:59:59.000Z","id":"G2276683575-POCLOUD","original_format":"UMM_JSON","granule_size":"14.535810470581055","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211230-000002-e20211230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.557 + 0.002 37.497 180","-37.557 -180 37.497 -0.001"],"time_start":"2021-12-31T00:00:01.000Z","updated":"2022-05-23T23:57:26.261Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2021-12-31T23:59:59.000Z","id":"G2276680561-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20211231-000001-e20211231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.914 + 0.001 37.682 180","-37.914 -180 37.682 -0.002"],"time_start":"2022-01-01T00:00:02.000Z","updated":"2022-05-24T00:12:27.322Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-01T23:59:59.000Z","id":"G2276683928-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220101-000002-e20220101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.691 + 0 37.6 180","-37.691 -180 37.6 -0.001"],"time_start":"2022-01-02T00:00:02.000Z","updated":"2022-05-24T00:15:30.026Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-02T23:59:59.000Z","id":"G2276684975-POCLOUD","original_format":"UMM_JSON","granule_size":"16.270328521728516","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220102-000002-e20220102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.7 + 0 37.584 180","-37.7 -180 37.584 -0.004"],"time_start":"2022-01-03T00:00:01.000Z","updated":"2022-05-24T00:07:32.901Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-03T23:59:59.000Z","id":"G2276683494-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220103-000001-e20220103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.77 + 0.001 37.557 180","-37.77 -180 37.557 -0.002"],"time_start":"2022-01-04T00:00:01.000Z","updated":"2022-05-24T00:23:23.946Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-04T23:59:59.000Z","id":"G2276686661-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220104-000001-e20220104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.571 + 0.001 37.578 180","-37.571 -180 37.578 -0.002"],"time_start":"2022-01-05T00:00:01.000Z","updated":"2022-05-24T00:43:35.462Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-05T23:59:59.000Z","id":"G2276690103-POCLOUD","original_format":"UMM_JSON","granule_size":"16.588162422180176","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220105-000001-e20220105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.719 + 0.001 37.547 180","-37.719 -180 37.547 0"],"time_start":"2022-01-06T00:00:01.000Z","updated":"2022-05-24T00:42:59.835Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-06T23:59:59.000Z","id":"G2276690051-POCLOUD","original_format":"UMM_JSON","granule_size":"16.84433078765869","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220106-000001-e20220106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.706 + 0.001 37.544 180","-37.706 -180 37.544 -0.002"],"time_start":"2022-01-07T00:00:02.000Z","updated":"2022-05-24T00:20:30.263Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-07T23:59:58.000Z","id":"G2276685808-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220107-000002-e20220107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.703 + 0 37.392 180","-37.703 -180 37.392 -0.001"],"time_start":"2022-01-08T00:00:01.000Z","updated":"2022-05-24T00:37:34.334Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-08T23:59:59.000Z","id":"G2276688934-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220108-000001-e20220108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.64 + 0.003 37.507 180","-37.64 -180 37.507 -0.005"],"time_start":"2022-01-09T00:00:01.000Z","updated":"2022-05-23T23:56:33.299Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-09T23:59:59.000Z","id":"G2276680521-POCLOUD","original_format":"UMM_JSON","granule_size":"16.582898139953613","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220109-000001-e20220109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.665 + 0.002 37.531 180","-37.665 -180 37.531 0"],"time_start":"2022-01-10T00:00:01.000Z","updated":"2022-05-24T00:44:25.818Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-10T23:59:59.000Z","id":"G2276690173-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220110-000001-e20220110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.687 + 0.004 37.696 180","-37.687 -180 37.696 0"],"time_start":"2022-01-11T00:00:02.000Z","updated":"2022-05-24T00:43:27.612Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-11T23:59:59.000Z","id":"G2276690091-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220111-000002-e20220111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.771 + 0.001 37.699 180","-37.771 -180 37.699 -0.001"],"time_start":"2022-01-12T00:00:01.000Z","updated":"2022-05-24T00:02:37.092Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-12T23:59:59.000Z","id":"G2276681628-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220112-000001-e20220112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.003 37.746 180","-37.769 -180 37.746 -0.002"],"time_start":"2022-01-13T00:00:01.000Z","updated":"2022-05-24T00:18:29.202Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-13T23:59:59.000Z","id":"G2276685618-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220113-000001-e20220113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.84 + 0.001 37.747 180","-37.84 -180 37.747 -0.004"],"time_start":"2022-01-14T00:00:02.000Z","updated":"2022-05-24T00:48:35.990Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-14T23:59:58.000Z","id":"G2276692122-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220114-000002-e20220114-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.795 + 0.004 37.668 180","-37.795 -180 37.668 -0.002"],"time_start":"2022-01-15T00:00:01.000Z","updated":"2022-05-24T00:32:43.487Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-15T23:59:59.000Z","id":"G2276688543-POCLOUD","original_format":"UMM_JSON","granule_size":"14.913147926330566","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220115-000001-e20220115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.802 + 0.003 37.655 180","-37.802 -180 37.655 -0.002"],"time_start":"2022-01-16T00:00:01.000Z","updated":"2022-05-24T00:15:27.106Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-16T23:59:59.000Z","id":"G2276684957-POCLOUD","original_format":"UMM_JSON","granule_size":"14.963284492492676","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220116-000001-e20220116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.68 + 0.002 37.691 180","-37.68 -180 37.691 -0.002"],"time_start":"2022-01-17T00:00:01.000Z","updated":"2022-05-24T00:25:24.515Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-17T23:59:59.000Z","id":"G2276686966-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220117-000001-e20220117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.676 + 0.002 37.696 180","-37.676 -180 37.696 -0.003"],"time_start":"2022-01-18T00:00:02.000Z","updated":"2022-05-23T23:58:37.139Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-18T23:59:59.000Z","id":"G2276681302-POCLOUD","original_format":"UMM_JSON","granule_size":"16.514220237731934","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220118-000002-e20220118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0 37.684 180","-37.644 -180 37.684 -0.001"],"time_start":"2022-01-19T00:00:01.000Z","updated":"2022-05-24T00:21:29.753Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-19T23:59:59.000Z","id":"G2276685905-POCLOUD","original_format":"UMM_JSON","granule_size":"16.363048553466797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220119-000001-e20220119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0.001 37.642 180","-37.616 -180 37.642 0"],"time_start":"2022-01-20T00:00:02.000Z","updated":"2022-05-24T00:48:29.801Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-20T23:59:59.000Z","id":"G2276692174-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220120-000002-e20220120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.713 + 0 37.704 180","-37.713 -180 37.704 -0.001"],"time_start":"2022-01-21T00:00:01.000Z","updated":"2022-05-24T00:36:31.096Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-21T23:59:59.000Z","id":"G2276688868-POCLOUD","original_format":"UMM_JSON","granule_size":"16.26922607421875","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220121-000001-e20220121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.735 + 0 37.766 180","-37.735 -180 37.766 0"],"time_start":"2022-01-22T00:00:02.000Z","updated":"2022-05-24T00:08:26.799Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-22T23:59:59.000Z","id":"G2276683584-POCLOUD","original_format":"UMM_JSON","granule_size":"16.330842971801758","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220122-000002-e20220122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.728 + 0 37.651 180","-37.728 -180 37.651 -0.002"],"time_start":"2022-01-23T00:00:01.000Z","updated":"2022-05-24T00:13:27.400Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-23T23:59:59.000Z","id":"G2276684586-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220123-000001-e20220123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.002 37.671 180","-37.769 -180 37.671 0"],"time_start":"2022-01-24T00:00:01.000Z","updated":"2022-05-24T00:28:32.992Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-24T23:59:59.000Z","id":"G2276687705-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220124-000001-e20220124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.735 + 0.006 37.728 180","-37.735 -180 37.728 0"],"time_start":"2022-01-25T00:00:01.000Z","updated":"2022-05-24T00:00:29.779Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-25T23:59:59.000Z","id":"G2276681443-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220125-000001-e20220125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.713 + 0.004 37.662 180","-37.713 -180 37.662 0"],"time_start":"2022-01-26T00:00:01.000Z","updated":"2022-05-24T00:36:31.545Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-26T23:59:59.000Z","id":"G2276688869-POCLOUD","original_format":"UMM_JSON","granule_size":"16.39403533935547","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220126-000001-e20220126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.704 + 0.003 37.829 180","-37.704 -180 37.829 -0.001"],"time_start":"2022-01-27T00:00:00.000Z","updated":"2022-05-24T00:01:30.178Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-27T23:59:59.000Z","id":"G2276681544-POCLOUD","original_format":"UMM_JSON","granule_size":"16.64905548095703","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220127-000000-e20220127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.763 + 0.001 37.769 180","-37.763 -180 37.769 -0.001"],"time_start":"2022-01-28T00:00:00.000Z","updated":"2022-05-24T00:19:34.314Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-28T23:59:59.000Z","id":"G2276685737-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220128-000000-e20220128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.773 + 0.002 37.789 180","-37.773 -180 37.789 -0.001"],"time_start":"2022-01-29T00:00:01.000Z","updated":"2022-05-24T00:11:30.558Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-29T23:59:59.000Z","id":"G2276683828-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220129-000001-e20220129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.72 + 0.001 37.783 180","-37.72 -180 37.783 -0.001"],"time_start":"2022-01-30T00:00:01.000Z","updated":"2022-05-24T00:08:27.482Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-30T23:59:59.000Z","id":"G2276683583-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220130-000001-e20220130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.609 + 0.002 37.784 180","-37.609 -180 37.784 0"],"time_start":"2022-01-31T00:00:02.000Z","updated":"2022-05-24T00:42:43.562Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-01-31T23:59:59.000Z","id":"G2276690046-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220131-000002-e20220131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.646 + 0.002 37.586 180","-37.646 -180 37.586 -0.001"],"time_start":"2022-02-01T00:00:00.000Z","updated":"2022-05-24T00:07:41.072Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-01T23:59:59.000Z","id":"G2276683526-POCLOUD","original_format":"UMM_JSON","granule_size":"16.23268413543701","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220201-000000-e20220201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.688 + 0.001 37.621 180","-37.688 -180 37.621 -0.001"],"time_start":"2022-02-02T00:00:01.000Z","updated":"2022-05-24T00:48:26.088Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-02T23:59:59.000Z","id":"G2276692074-POCLOUD","original_format":"UMM_JSON","granule_size":"16.544116973876953","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220202-000001-e20220202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.635 + 0 37.601 180","-37.635 -180 37.601 0"],"time_start":"2022-02-03T00:00:01.000Z","updated":"2022-05-23T23:51:34.580Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-03T23:59:59.000Z","id":"G2276679879-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220203-000001-e20220203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0.001 37.654 180","-37.75 -180 37.654 0"],"time_start":"2022-02-04T00:00:02.000Z","updated":"2022-05-24T00:10:39.519Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-04T23:59:59.000Z","id":"G2276683776-POCLOUD","original_format":"UMM_JSON","granule_size":"16.584936141967773","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220204-000002-e20220204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.76 + 0 37.555 180","-37.76 -180 37.555 -0.002"],"time_start":"2022-02-05T00:00:01.000Z","updated":"2022-05-24T00:47:25.358Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-05T23:59:59.000Z","id":"G2276691388-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220205-000001-e20220205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.765 + 0 37.72 180","-37.765 -180 37.72 -0.002"],"time_start":"2022-02-06T00:00:02.000Z","updated":"2022-05-24T00:26:34.047Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-06T23:59:59.000Z","id":"G2276687103-POCLOUD","original_format":"UMM_JSON","granule_size":"16.487860679626465","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220206-000002-e20220206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.755 + 0.001 37.676 180","-37.755 -180 37.676 -0.001"],"time_start":"2022-02-07T00:00:01.000Z","updated":"2022-05-24T00:04:32.753Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-07T23:59:59.000Z","id":"G2276682454-POCLOUD","original_format":"UMM_JSON","granule_size":"16.173620223999023","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220207-000001-e20220207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.756 + 0.001 37.579 180","-37.756 -180 37.579 -0.001"],"time_start":"2022-02-08T00:00:01.000Z","updated":"2022-05-23T23:58:25.317Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-08T23:59:59.000Z","id":"G2276681267-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220208-000001-e20220208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.621 + 0.001 37.847 180","-37.621 -180 37.847 0"],"time_start":"2022-02-09T00:00:02.000Z","updated":"2022-05-24T00:35:30.097Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-09T23:59:58.000Z","id":"G2276688785-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220209-000002-e20220209-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.61 + 0.001 37.535 180","-37.61 -180 37.535 -0.003"],"time_start":"2022-02-10T00:00:02.000Z","updated":"2022-05-24T00:06:30.437Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-10T23:59:59.000Z","id":"G2276682830-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220210-000002-e20220210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.528 + 0.003 39.006 180","-37.528 -180 39.006 -0.004"],"time_start":"2022-02-11T00:00:01.000Z","updated":"2022-05-24T00:09:27.694Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-11T23:59:59.000Z","id":"G2276683665-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220211-000001-e20220211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.577 + 0 37.483 180","-37.577 -180 37.483 -0.006"],"time_start":"2022-02-12T00:00:01.000Z","updated":"2022-05-24T00:45:32.629Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-12T23:59:59.000Z","id":"G2276690263-POCLOUD","original_format":"UMM_JSON","granule_size":"17.78268337249756","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220212-000001-e20220212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.685 + 0.004 37.449 180","-37.685 -180 37.449 -0.002"],"time_start":"2022-02-13T00:00:02.000Z","updated":"2022-05-24T00:19:40.197Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-13T23:59:59.000Z","id":"G2276685766-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220213-000002-e20220213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.688 + 0 37.583 180","-37.688 -180 37.583 -0.001"],"time_start":"2022-02-14T00:00:01.000Z","updated":"2022-05-24T00:03:32.763Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-14T23:59:59.000Z","id":"G2276682038-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220214-000001-e20220214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.671 + 0.002 37.518 180","-37.671 -180 37.518 -0.002"],"time_start":"2022-02-15T00:00:01.000Z","updated":"2022-05-24T00:36:30.355Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-15T23:59:59.000Z","id":"G2276688867-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220215-000001-e20220215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0 37.608 180","-37.669 -180 37.608 0"],"time_start":"2022-02-16T00:00:01.000Z","updated":"2022-05-23T23:48:06.438Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-16T23:59:59.000Z","id":"G2276678505-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220216-000001-e20220216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0.004 39.241 180","-37.595 -180 39.241 -0.002"],"time_start":"2022-02-17T00:00:00.000Z","updated":"2022-05-24T00:49:28.201Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-17T23:59:59.000Z","id":"G2276692696-POCLOUD","original_format":"UMM_JSON","granule_size":"17.001763343811035","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220217-000000-e20220217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.653 + 0 37.602 180","-37.653 -180 37.602 -0.002"],"time_start":"2022-02-18T00:00:01.000Z","updated":"2022-05-24T00:10:33.844Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-18T23:59:59.000Z","id":"G2276683783-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220218-000001-e20220218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.468 + 0 37.619 180","-37.468 -180 37.619 -0.004"],"time_start":"2022-02-19T00:00:01.000Z","updated":"2022-05-24T00:05:29.123Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-19T23:59:59.000Z","id":"G2276682628-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220219-000001-e20220219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.576 + 0 37.507 180","-37.576 -180 37.507 -0.002"],"time_start":"2022-02-20T00:00:01.000Z","updated":"2022-05-23T23:55:28.583Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-20T23:59:59.000Z","id":"G2276680423-POCLOUD","original_format":"UMM_JSON","granule_size":"16.70524787902832","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220220-000001-e20220220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.607 + 0 37.617 180","-37.607 -180 37.617 -0.002"],"time_start":"2022-02-21T00:00:02.000Z","updated":"2022-05-24T00:48:27.217Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-21T23:59:59.000Z","id":"G2276692072-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220221-000002-e20220221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.59 + 0 37.485 180","-37.59 -180 37.485 -0.002"],"time_start":"2022-02-22T00:00:02.000Z","updated":"2022-05-24T00:28:29.124Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-22T23:59:59.000Z","id":"G2276687698-POCLOUD","original_format":"UMM_JSON","granule_size":"17.220306396484375","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220222-000002-e20220222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0.002 37.497 180","-37.565 -180 37.497 -0.002"],"time_start":"2022-02-23T00:00:02.000Z","updated":"2022-05-24T00:19:32.543Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-23T23:59:59.000Z","id":"G2276685731-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220223-000002-e20220223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0.004 37.482 180","-37.565 -180 37.482 -0.002"],"time_start":"2022-02-24T00:00:01.000Z","updated":"2022-05-24T00:19:30.991Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-24T23:59:59.000Z","id":"G2276685726-POCLOUD","original_format":"UMM_JSON","granule_size":"16.31842613220215","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220224-000001-e20220224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.542 + 0.001 37.395 180","-37.542 -180 37.395 0"],"time_start":"2022-02-25T00:00:02.000Z","updated":"2022-05-23T23:56:30.077Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-25T23:59:59.000Z","id":"G2276680500-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220225-000002-e20220225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.43 + 0.004 37.346 180","-37.43 -180 37.346 -0.001"],"time_start":"2022-02-26T00:00:02.000Z","updated":"2022-05-24T00:31:28.460Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-26T23:59:59.000Z","id":"G2276688012-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220226-000002-e20220226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.503 + 0 37.411 180","-37.503 -180 37.411 -0.001"],"time_start":"2022-02-27T00:00:01.000Z","updated":"2022-05-24T00:16:44.542Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-27T23:59:59.000Z","id":"G2276685115-POCLOUD","original_format":"UMM_JSON","granule_size":"16.597678184509277","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220227-000001-e20220227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.521 + 0.001 37.577 180","-37.521 -180 37.577 -0.003"],"time_start":"2022-02-28T00:00:01.000Z","updated":"2022-05-24T00:43:36.879Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-02-28T23:59:59.000Z","id":"G2276690105-POCLOUD","original_format":"UMM_JSON","granule_size":"16.60007381439209","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220228-000001-e20220228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.437 + 0.003 37.516 180","-37.437 -180 37.516 -0.001"],"time_start":"2022-03-01T00:00:02.000Z","updated":"2022-05-24T00:39:30.328Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-01T23:59:59.000Z","id":"G2276689558-POCLOUD","original_format":"UMM_JSON","granule_size":"16.512099266052246","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220301-000002-e20220301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.531 + 0.003 37.606 180","-37.531 -180 37.606 -0.003"],"time_start":"2022-03-02T00:00:01.000Z","updated":"2022-05-24T00:49:30.532Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-02T23:59:59.000Z","id":"G2276692668-POCLOUD","original_format":"UMM_JSON","granule_size":"16.55759334564209","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220302-000001-e20220302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.607 + 0.003 37.667 180","-37.607 -180 37.667 -0.006"],"time_start":"2022-03-03T00:00:01.000Z","updated":"2022-05-23T23:50:39.657Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-03T23:59:59.000Z","id":"G2276679798-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220303-000001-e20220303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.66 + 0.005 37.637 180","-37.66 -180 37.637 0"],"time_start":"2022-03-04T00:00:01.000Z","updated":"2022-05-24T00:37:29.493Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-04T23:59:59.000Z","id":"G2276688925-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220304-000001-e20220304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.672 + 0.002 37.57 180","-37.672 -180 37.57 0"],"time_start":"2022-03-05T00:00:02.000Z","updated":"2022-05-24T00:18:27.553Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-05T23:59:59.000Z","id":"G2276685613-POCLOUD","original_format":"UMM_JSON","granule_size":"16.881953239440918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220305-000002-e20220305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.61 + 0.004 37.689 180","-37.61 -180 37.689 0"],"time_start":"2022-03-06T00:00:02.000Z","updated":"2022-05-24T00:33:27.627Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-06T23:59:59.000Z","id":"G2276688628-POCLOUD","original_format":"UMM_JSON","granule_size":"17.224007606506348","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220306-000002-e20220306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.592 + 0.001 37.622 180","-37.592 -180 37.622 0"],"time_start":"2022-03-07T00:00:01.000Z","updated":"2022-05-24T00:11:32.397Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-07T23:59:59.000Z","id":"G2276683833-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220307-000001-e20220307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.58 + 0.003 37.671 180","-37.58 -180 37.671 -0.004"],"time_start":"2022-03-08T00:00:00.000Z","updated":"2022-05-24T00:44:31.370Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-08T23:59:59.000Z","id":"G2276690182-POCLOUD","original_format":"UMM_JSON","granule_size":"17.008766174316406","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220308-000000-e20220308-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.569 + 0.003 37.693 180","-37.569 -180 37.693 -0.001"],"time_start":"2022-03-09T00:00:02.000Z","updated":"2022-05-24T00:28:42.987Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-09T23:59:59.000Z","id":"G2276687741-POCLOUD","original_format":"UMM_JSON","granule_size":"16.860485076904297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220309-000002-e20220309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.764 + 0.001 37.783 180","-37.764 -180 37.783 -0.002"],"time_start":"2022-03-10T00:00:01.000Z","updated":"2022-05-24T00:29:26.874Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-10T23:59:59.000Z","id":"G2276687811-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220310-000001-e20220310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.746 + 0.001 37.703 180","-37.746 -180 37.703 -0.004"],"time_start":"2022-03-11T00:00:01.000Z","updated":"2022-05-24T00:25:31.158Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-11T23:59:59.000Z","id":"G2276687057-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220311-000001-e20220311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.779 + 0.001 37.764 180","-37.779 -180 37.764 -0.004"],"time_start":"2022-03-12T00:00:01.000Z","updated":"2022-05-24T00:04:41.880Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-12T23:59:59.000Z","id":"G2276682473-POCLOUD","original_format":"UMM_JSON","granule_size":"18.0244779586792","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220312-000001-e20220312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.71 + 0.001 37.83 180","-37.71 -180 37.83 -0.001"],"time_start":"2022-03-13T00:00:01.000Z","updated":"2022-05-24T00:07:34.850Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-13T23:59:59.000Z","id":"G2276683503-POCLOUD","original_format":"UMM_JSON","granule_size":"16.520278930664062","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220313-000001-e20220313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0.004 37.678 180","-37.791 -180 37.678 -0.001"],"time_start":"2022-03-14T00:00:00.000Z","updated":"2022-05-24T00:41:30.387Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-14T23:59:59.000Z","id":"G2276689669-POCLOUD","original_format":"UMM_JSON","granule_size":"15.54638671875","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220314-000000-e20220314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.687 + 0.001 37.773 180","-37.687 -180 37.773 -0.003"],"time_start":"2022-03-15T00:00:01.000Z","updated":"2022-05-24T00:09:37.504Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-15T23:59:59.000Z","id":"G2276683694-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220315-000001-e20220315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0.002 37.668 180","-37.636 -180 37.668 -0.001"],"time_start":"2022-03-16T00:00:01.000Z","updated":"2022-05-24T00:01:34.071Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-16T23:59:58.000Z","id":"G2276681543-POCLOUD","original_format":"UMM_JSON","granule_size":"15.68990707397461","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220316-000001-e20220316-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.66 + 0 37.699 180","-37.66 -180 37.699 -0.005"],"time_start":"2022-03-17T00:00:02.000Z","updated":"2022-05-24T00:39:38.336Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-17T23:59:59.000Z","id":"G2276689569-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220317-000002-e20220317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.696 + 0.001 37.668 180","-37.696 -180 37.668 0"],"time_start":"2022-03-18T00:00:02.000Z","updated":"2022-05-24T00:44:36.560Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-18T23:59:59.000Z","id":"G2276690186-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220318-000002-e20220318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.686 + 0.001 37.57 180","-37.686 -180 37.57 -0.001"],"time_start":"2022-03-19T00:00:02.000Z","updated":"2022-05-24T00:36:30.526Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-19T23:59:59.000Z","id":"G2276688872-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220319-000002-e20220319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.002 37.613 180","-37.669 -180 37.613 -0.001"],"time_start":"2022-03-20T00:00:01.000Z","updated":"2022-05-24T00:25:25.933Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-20T23:59:59.000Z","id":"G2276686968-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220320-000001-e20220320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.749 + 0.005 37.589 180","-37.749 -180 37.589 -0.001"],"time_start":"2022-03-21T00:00:01.000Z","updated":"2022-05-24T00:21:30.915Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-21T23:59:59.000Z","id":"G2276685909-POCLOUD","original_format":"UMM_JSON","granule_size":"16.915307998657227","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220321-000001-e20220321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.782 + 0.003 37.585 180","-37.782 -180 37.585 -0.001"],"time_start":"2022-03-22T00:00:01.000Z","updated":"2022-05-24T00:05:33.795Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-22T23:59:59.000Z","id":"G2276682643-POCLOUD","original_format":"UMM_JSON","granule_size":"16.88735866546631","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220322-000001-e20220322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.678 + 0.002 37.575 180","-37.678 -180 37.575 -0.002"],"time_start":"2022-03-23T00:00:01.000Z","updated":"2022-05-24T00:29:35.378Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-23T23:59:59.000Z","id":"G2276687841-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220323-000001-e20220323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.816 + 0 37.715 180","-37.816 -180 37.715 -0.002"],"time_start":"2022-03-24T00:00:01.000Z","updated":"2022-05-24T00:17:37.155Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-24T23:59:59.000Z","id":"G2276685274-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220324-000001-e20220324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.688 + 0.001 37.703 180","-37.688 -180 37.703 0"],"time_start":"2022-03-25T00:00:02.000Z","updated":"2022-05-24T00:41:31.458Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-25T23:59:59.000Z","id":"G2276689672-POCLOUD","original_format":"UMM_JSON","granule_size":"16.548906326293945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220325-000002-e20220325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.809 + 0 37.671 180","-37.809 -180 37.671 -0.001"],"time_start":"2022-03-26T00:00:01.000Z","updated":"2022-05-24T00:33:30.889Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-26T23:59:59.000Z","id":"G2276688633-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220326-000001-e20220326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.844 + 0.002 37.712 180","-37.844 -180 37.712 0"],"time_start":"2022-03-27T00:00:01.000Z","updated":"2022-05-24T00:01:35.856Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-27T23:59:59.000Z","id":"G2276681550-POCLOUD","original_format":"UMM_JSON","granule_size":"16.251495361328125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220327-000001-e20220327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.856 + 0 37.75 180","-37.856 -180 37.75 0"],"time_start":"2022-03-28T00:00:01.000Z","updated":"2022-05-24T00:16:33.501Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-28T23:59:59.000Z","id":"G2276685079-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220328-000001-e20220328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.877 + 0.001 37.614 180","-37.877 -180 37.614 -0.001"],"time_start":"2022-03-29T00:00:01.000Z","updated":"2022-05-24T00:06:31.720Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-29T23:59:59.000Z","id":"G2276682832-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220329-000001-e20220329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.773 + 0.007 37.515 180","-37.773 -180 37.515 -0.004"],"time_start":"2022-03-30T00:00:01.000Z","updated":"2022-05-23T23:52:30.754Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-30T23:59:59.000Z","id":"G2276680250-POCLOUD","original_format":"UMM_JSON","granule_size":"14.680231094360352","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220330-000001-e20220330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.64 + 0.004 37.431 180","-37.64 -180 37.431 -0.003"],"time_start":"2022-03-31T00:00:01.000Z","updated":"2022-05-23T23:53:37.397Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-03-31T23:59:59.000Z","id":"G2276680333-POCLOUD","original_format":"UMM_JSON","granule_size":"14.315792083740234","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220331-000001-e20220331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.648 + 0.001 37.438 180","-37.648 -180 37.438 -0.008"],"time_start":"2022-04-01T00:00:01.000Z","updated":"2022-05-24T00:13:35.164Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-01T23:59:59.000Z","id":"G2276684607-POCLOUD","original_format":"UMM_JSON","granule_size":"14.471854209899902","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220401-000001-e20220401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.679 + 0.002 37.466 180","-37.679 -180 37.466 -0.001"],"time_start":"2022-04-02T00:00:01.000Z","updated":"2022-05-24T00:11:29.073Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-02T23:59:59.000Z","id":"G2276683824-POCLOUD","original_format":"UMM_JSON","granule_size":"14.566475868225098","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220402-000001-e20220402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.708 + 0.004 37.59 180","-37.708 -180 37.59 -0.008"],"time_start":"2022-04-03T00:00:01.000Z","updated":"2022-05-24T00:31:25.818Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-03T23:59:59.000Z","id":"G2276688001-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220403-000001-e20220403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.723 + 0.001 37.645 180","-37.723 -180 37.645 -0.002"],"time_start":"2022-04-04T00:00:01.000Z","updated":"2022-05-24T00:13:30.042Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-04T23:59:59.000Z","id":"G2276684587-POCLOUD","original_format":"UMM_JSON","granule_size":"16.96874237060547","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220404-000001-e20220404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.751 + 0.002 37.513 180","-37.751 -180 37.513 -0.001"],"time_start":"2022-04-05T00:00:01.000Z","updated":"2022-05-23T23:48:30.636Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-05T23:59:59.000Z","id":"G2276678965-POCLOUD","original_format":"UMM_JSON","granule_size":"17.020100593566895","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220405-000001-e20220405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.733 + 0.001 37.634 180","-37.733 -180 37.634 -0.004"],"time_start":"2022-04-06T00:00:01.000Z","updated":"2022-05-24T00:35:31.612Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-06T23:59:59.000Z","id":"G2276688790-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220406-000001-e20220406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.653 + 0.004 37.691 180","-37.653 -180 37.691 -0.002"],"time_start":"2022-04-07T00:00:02.000Z","updated":"2022-05-24T00:31:36.601Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-07T23:59:59.000Z","id":"G2276688035-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220407-000002-e20220407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.711 + 0.006 37.602 180","-37.711 -180 37.602 0"],"time_start":"2022-04-08T00:00:02.000Z","updated":"2022-05-23T23:51:35.932Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-08T23:59:59.000Z","id":"G2276679889-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220408-000002-e20220408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.628 + 0 37.462 180","-37.628 -180 37.462 -0.004"],"time_start":"2022-04-09T00:00:02.000Z","updated":"2022-05-24T00:17:36.711Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-09T23:59:59.000Z","id":"G2276685272-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220409-000002-e20220409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.567 + 0.001 37.492 180","-37.567 -180 37.492 -0.002"],"time_start":"2022-04-10T00:00:02.000Z","updated":"2022-05-24T00:30:33.225Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-10T23:59:59.000Z","id":"G2276687931-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220410-000002-e20220410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.499 + 0 37.558 180","-37.499 -180 37.558 -0.001"],"time_start":"2022-04-11T00:00:01.000Z","updated":"2022-05-24T00:17:33.437Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-11T23:59:59.000Z","id":"G2276685268-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220411-000001-e20220411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.59 + 0 37.522 180","-37.59 -180 37.522 -0.002"],"time_start":"2022-04-12T00:00:01.000Z","updated":"2022-05-24T00:03:28.866Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-12T23:59:59.000Z","id":"G2276682029-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220412-000001-e20220412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.608 + 0.003 37.634 180","-37.608 -180 37.634 -0.004"],"time_start":"2022-04-13T00:00:00.000Z","updated":"2022-05-24T00:40:46.062Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-13T23:59:59.000Z","id":"G2276689643-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220413-000000-e20220413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0.001 37.665 180","-37.595 -180 37.665 -0.001"],"time_start":"2022-04-14T00:00:01.000Z","updated":"2022-05-24T00:07:30.266Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-14T23:59:59.000Z","id":"G2276683415-POCLOUD","original_format":"UMM_JSON","granule_size":"18.529541969299316","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220414-000001-e20220414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.611 + 0.002 37.7 180","-37.611 -180 37.7 -0.002"],"time_start":"2022-04-15T00:00:02.000Z","updated":"2022-05-23T23:47:04.833Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-15T23:59:59.000Z","id":"G2276677232-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220415-000002-e20220415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.557 + 0 37.601 180","-37.557 -180 37.601 -0.001"],"time_start":"2022-04-16T00:00:01.000Z","updated":"2022-05-23T23:46:35.502Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-16T23:59:59.000Z","id":"G2276676694-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220416-000001-e20220416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.586 + 0.001 37.585 180","-37.586 -180 37.585 -0.001"],"time_start":"2022-04-17T00:00:01.000Z","updated":"2022-05-23T23:47:29.363Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-17T23:59:59.000Z","id":"G2276677555-POCLOUD","original_format":"UMM_JSON","granule_size":"17.01876449584961","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220417-000001-e20220417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.466 + 0.001 37.502 180","-37.466 -180 37.502 0"],"time_start":"2022-04-18T00:00:02.000Z","updated":"2022-05-23T23:47:35.914Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-18T23:59:58.000Z","id":"G2276677653-POCLOUD","original_format":"UMM_JSON","granule_size":"17.136451721191406","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220418-000002-e20220418-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.564 + 0 37.544 180","-37.564 -180 37.544 -0.003"],"time_start":"2022-04-19T00:00:01.000Z","updated":"2022-05-23T23:47:30.860Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-19T23:59:59.000Z","id":"G2276677578-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220419-000001-e20220419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.622 + 0.006 37.606 180","-37.622 -180 37.606 0"],"time_start":"2022-04-20T00:00:01.000Z","updated":"2022-05-23T23:47:25.619Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-20T23:59:59.000Z","id":"G2276677499-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220420-000001-e20220420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.586 + 0.004 37.512 180","-37.586 -180 37.512 -0.005"],"time_start":"2022-04-21T00:00:01.000Z","updated":"2022-05-23T23:47:05.075Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-21T23:59:59.000Z","id":"G2276677246-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220421-000001-e20220421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.505 + 0.007 37.544 180","-37.505 -180 37.544 -0.002"],"time_start":"2022-04-22T00:00:01.000Z","updated":"2022-05-23T23:46:32.806Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-22T23:59:58.000Z","id":"G2276676679-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220422-000001-e20220422-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.5 + 0.003 37.483 180","-37.5 -180 37.483 -0.004"],"time_start":"2022-04-23T00:00:01.000Z","updated":"2022-05-23T23:46:57.458Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-23T23:59:59.000Z","id":"G2276677137-POCLOUD","original_format":"UMM_JSON","granule_size":"15.002228736877441","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220423-000001-e20220423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.488 + 0.001 37.516 180","-37.488 -180 37.516 -0.001"],"time_start":"2022-04-24T00:00:01.000Z","updated":"2022-06-03T14:06:30.632Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-24T23:59:59.000Z","id":"G2276677069-POCLOUD","original_format":"UMM_JSON","granule_size":"14.717166900634766","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220424-000001-e20220424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.514 + 0.003 37.485 180","-37.514 -180 37.485 -0.005"],"time_start":"2022-04-25T00:00:01.000Z","updated":"2022-06-03T14:13:27.086Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-25T23:59:59.000Z","id":"G2276692962-POCLOUD","original_format":"UMM_JSON","granule_size":"14.641478538513184","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220425-000001-e20220425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.451 + 0.001 37.313 180","-37.451 -180 37.313 -0.002"],"time_start":"2022-04-26T00:00:02.000Z","updated":"2022-06-03T14:07:30.639Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-26T23:59:59.000Z","id":"G2276677522-POCLOUD","original_format":"UMM_JSON","granule_size":"14.806802749633789","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220426-000002-e20220426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.625 + 0.002 37.409 180","-37.625 -180 37.409 -0.001"],"time_start":"2022-04-27T00:00:01.000Z","updated":"2022-06-03T14:06:35.458Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-27T23:59:59.000Z","id":"G2276692997-POCLOUD","original_format":"UMM_JSON","granule_size":"16.2540340423584","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220427-000001-e20220427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.575 + 0.007 37.526 180","-37.575 -180 37.526 -0.002"],"time_start":"2022-04-28T00:00:01.000Z","updated":"2022-06-03T14:06:36.176Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-28T23:59:59.000Z","id":"G2276692979-POCLOUD","original_format":"UMM_JSON","granule_size":"16.275094985961914","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220428-000001-e20220428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.331 + 0.002 37.545 180","-38.331 -180 37.545 -0.001"],"time_start":"2022-04-29T00:00:01.000Z","updated":"2022-06-03T14:20:26.383Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-29T23:59:59.000Z","id":"G2276693006-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220429-000001-e20220429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.72 + 0 37.665 180","-37.72 -180 37.665 -0.003"],"time_start":"2022-04-30T00:00:01.000Z","updated":"2022-06-03T14:07:28.456Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-04-30T23:59:59.000Z","id":"G2276692994-POCLOUD","original_format":"UMM_JSON","granule_size":"16.33618450164795","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220430-000001-e20220430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.687 + 0.004 37.503 180","-37.687 -180 37.503 -0.002"],"time_start":"2022-05-01T00:00:02.000Z","updated":"2022-06-03T14:12:30.321Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-01T23:59:59.000Z","id":"G2276692977-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220501-000002-e20220501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.646 + 0.002 37.496 180","-37.646 -180 37.496 -0.002"],"time_start":"2022-05-02T00:00:02.000Z","updated":"2022-06-03T14:20:22.979Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-02T23:59:59.000Z","id":"G2276692963-POCLOUD","original_format":"UMM_JSON","granule_size":"10.119074821472168","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220502-000002-e20220502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.69 + 0.002 37.554 180","-37.69 -180 37.554 0"],"time_start":"2022-05-03T00:00:01.000Z","updated":"2022-06-03T14:11:28.141Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-03T23:59:59.000Z","id":"G2276692733-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220503-000001-e20220503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.589 + 0.001 37.464 180","-37.589 -180 37.464 0"],"time_start":"2022-05-04T00:00:00.000Z","updated":"2022-06-03T14:16:31.737Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-04T23:59:59.000Z","id":"G2276692993-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220504-000000-e20220504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0.001 37.482 180","-37.636 -180 37.482 -0.001"],"time_start":"2022-05-05T00:00:01.000Z","updated":"2022-06-03T14:11:29.585Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-05T23:59:59.000Z","id":"G2276693028-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220505-000001-e20220505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.495 + 0.001 37.428 180","-39.495 -180 37.428 -0.004"],"time_start":"2022-05-06T00:00:01.000Z","updated":"2022-06-03T14:11:26.036Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-06T23:59:59.000Z","id":"G2276692748-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220506-000001-e20220506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.791 + 0.001 37.716 180","-37.791 -180 37.716 -0.004"],"time_start":"2022-05-07T00:00:01.000Z","updated":"2022-06-03T14:13:33.781Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-07T23:59:59.000Z","id":"G2276692870-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220507-000001-e20220507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.742 + 0.001 37.699 180","-37.742 -180 37.699 0"],"time_start":"2022-05-08T00:00:01.000Z","updated":"2022-06-03T14:09:30.923Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-08T23:59:59.000Z","id":"G2276693004-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220508-000001-e20220508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0.001 37.658 180","-37.777 -180 37.658 0"],"time_start":"2022-05-09T00:00:01.000Z","updated":"2022-06-03T14:16:31.787Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-09T23:59:59.000Z","id":"G2276692978-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220509-000001-e20220509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.798 + 0.001 37.756 180","-37.798 -180 37.756 -0.004"],"time_start":"2022-05-10T00:00:02.000Z","updated":"2022-06-03T14:12:29.295Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-10T23:59:59.000Z","id":"G2276693035-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220510-000002-e20220510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.705 + 0 37.748 180","-37.705 -180 37.748 -0.004"],"time_start":"2022-05-11T00:00:01.000Z","updated":"2022-06-03T14:15:38.822Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-11T23:59:59.000Z","id":"G2276692983-POCLOUD","original_format":"UMM_JSON","granule_size":"18.530517578125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220511-000001-e20220511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.713 + 0.003 37.606 180","-37.713 -180 37.606 0"],"time_start":"2022-05-12T00:00:01.000Z","updated":"2022-06-03T14:09:39.312Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-12T23:59:59.000Z","id":"G2276692779-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220512-000001-e20220512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.811 + 0.001 37.676 180","-37.811 -180 37.676 -0.001"],"time_start":"2022-05-13T00:00:02.000Z","updated":"2022-06-03T14:09:28.021Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-13T23:59:59.000Z","id":"G2276692969-POCLOUD","original_format":"UMM_JSON","granule_size":"18.58595085144043","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220513-000002-e20220513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.643 + 0 37.698 180","-37.643 -180 37.698 -0.001"],"time_start":"2022-05-14T00:00:01.000Z","updated":"2022-06-03T14:13:34.172Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-14T23:59:59.000Z","id":"G2276692742-POCLOUD","original_format":"UMM_JSON","granule_size":"16.465383529663086","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220514-000001-e20220514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.66 + 0.001 37.646 180","-37.66 -180 37.646 -0.006"],"time_start":"2022-05-15T00:00:01.000Z","updated":"2022-06-03T14:15:03.737Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-15T23:59:59.000Z","id":"G2276692964-POCLOUD","original_format":"UMM_JSON","granule_size":"14.714640617370605","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220515-000001-e20220515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.667 + 0.003 37.617 180","-37.667 -180 37.617 -0.001"],"time_start":"2022-05-16T00:00:01.000Z","updated":"2022-06-03T14:18:28.601Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-16T23:59:59.000Z","id":"G2277303002-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220516-000001-e20220516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.697 + 0.001 37.711 180","-37.697 -180 37.711 0"],"time_start":"2022-05-17T00:00:02.000Z","updated":"2022-06-03T14:15:26.335Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-17T23:59:59.000Z","id":"G2277303007-POCLOUD","original_format":"UMM_JSON","granule_size":"16.32948875427246","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220517-000002-e20220517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.758 + 0.003 37.742 180","-37.758 -180 37.742 -0.001"],"time_start":"2022-05-18T00:00:01.000Z","updated":"2022-06-03T14:18:31.908Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-18T23:59:59.000Z","id":"G2278871807-POCLOUD","original_format":"UMM_JSON","granule_size":"14.803431510925293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220518-000001-e20220518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.749 + 0.001 37.58 180","-37.749 -180 37.58 -0.001"],"time_start":"2022-05-19T00:00:01.000Z","updated":"2022-06-03T14:23:28.801Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-19T23:59:59.000Z","id":"G2278871843-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220519-000001-e20220519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.613 + 0.001 37.663 180","-37.613 -180 37.663 -0.001"],"time_start":"2022-05-20T00:00:01.000Z","updated":"2022-06-03T14:10:28.969Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-20T23:59:59.000Z","id":"G2278871803-POCLOUD","original_format":"UMM_JSON","granule_size":"16.872462272644043","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220520-000001-e20220520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.639 + 0 37.73 180","-37.639 -180 37.73 -0.001"],"time_start":"2022-05-21T00:00:01.000Z","updated":"2022-06-03T14:16:29.699Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-21T23:59:59.000Z","id":"G2283370547-POCLOUD","original_format":"UMM_JSON","granule_size":"16.931252479553223","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220521-000001-e20220521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.653 + 0.001 37.757 180","-37.653 -180 37.757 0"],"time_start":"2022-05-22T00:00:01.000Z","updated":"2022-06-03T14:18:28.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-22T23:59:59.000Z","id":"G2283372409-POCLOUD","original_format":"UMM_JSON","granule_size":"16.638150215148926","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220522-000001-e20220522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.753 + 0.001 37.815 180","-37.753 -180 37.815 0"],"time_start":"2022-05-23T00:00:01.000Z","updated":"2022-06-03T14:10:27.779Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-23T23:59:59.000Z","id":"G2283373297-POCLOUD","original_format":"UMM_JSON","granule_size":"16.605401039123535","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220523-000001-e20220523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.761 + 0 37.762 180","-37.761 -180 37.762 -0.001"],"time_start":"2022-05-24T00:00:02.000Z","updated":"2022-06-03T14:09:30.582Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-24T23:59:59.000Z","id":"G2283377849-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220524-000002-e20220524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.768 + 0 37.692 180","-37.768 -180 37.692 -0.002"],"time_start":"2022-05-25T00:00:01.000Z","updated":"2022-06-03T14:15:28.791Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-25T23:59:59.000Z","id":"G2283374155-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220525-000001-e20220525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.619 + 0.001 37.721 180","-37.619 -180 37.721 -0.003"],"time_start":"2022-05-26T00:00:01.000Z","updated":"2022-06-03T14:12:24.306Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-26T23:59:59.000Z","id":"G2283375827-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220526-000001-e20220526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.586 + 0.007 37.606 180","-37.586 -180 37.606 0"],"time_start":"2022-05-27T00:00:01.000Z","updated":"2022-06-03T14:11:26.504Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-27T23:59:59.000Z","id":"G2283369641-POCLOUD","original_format":"UMM_JSON","granule_size":"16.293715476989746","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220527-000001-e20220527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.605 + 0.001 37.648 180","-37.605 -180 37.648 -0.001"],"time_start":"2022-05-28T00:00:02.000Z","updated":"2022-06-03T14:08:30.821Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-28T23:59:59.000Z","id":"G2283370463-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220528-000002-e20220528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.562 + 0 37.658 180","-37.562 -180 37.658 -0.006"],"time_start":"2022-05-29T00:00:01.000Z","updated":"2022-06-08T02:26:30.466Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-29T23:59:59.000Z","id":"G2287540331-POCLOUD","original_format":"UMM_JSON","granule_size":"16.35281467437744","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220529-000001-e20220529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.587 + 0 37.59 180","-37.587 -180 37.59 0"],"time_start":"2022-05-30T00:00:02.000Z","updated":"2022-06-08T02:27:29.282Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-30T23:59:59.000Z","id":"G2287540645-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220530-000002-e20220530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.683 + 0.001 37.613 180","-37.683 -180 37.613 -0.001"],"time_start":"2022-05-31T00:00:01.000Z","updated":"2022-06-08T02:28:37.331Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-05-31T23:59:59.000Z","id":"G2287540948-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220531-000001-e20220531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.648 + 0 37.649 180","-37.648 -180 37.649 -0.002"],"time_start":"2022-06-01T00:00:01.000Z","updated":"2022-06-08T02:32:30.591Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-01T23:59:59.000Z","id":"G2287541881-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220601-000001-e20220601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.709 + 0.001 37.62 180","-37.709 -180 37.62 0"],"time_start":"2022-06-02T00:00:01.000Z","updated":"2022-06-08T02:30:27.750Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-02T23:59:59.000Z","id":"G2287541498-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220602-000001-e20220602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.686 + 0.001 37.662 180","-37.686 -180 37.662 0"],"time_start":"2022-06-03T00:00:02.000Z","updated":"2022-06-08T02:28:29.323Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-03T23:59:59.000Z","id":"G2287540922-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220603-000002-e20220603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.004 37.628 180","-37.669 -180 37.628 -0.001"],"time_start":"2022-06-04T00:00:01.000Z","updated":"2022-06-08T02:29:29.068Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-04T23:59:59.000Z","id":"G2287541226-POCLOUD","original_format":"UMM_JSON","granule_size":"16.49237632751465","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220604-000001-e20220604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.675 + 0.001 37.64 180","-37.675 -180 37.64 -0.001"],"time_start":"2022-06-05T00:00:02.000Z","updated":"2022-06-08T19:57:28.010Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-05T23:59:59.000Z","id":"G2287981398-POCLOUD","original_format":"UMM_JSON","granule_size":"16.629382133483887","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220605-000002-e20220605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.466 + 0.002 37.564 180","-37.466 -180 37.564 -0.001"],"time_start":"2022-06-06T00:00:02.000Z","updated":"2022-06-09T19:57:28.991Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-06T23:59:59.000Z","id":"G2288754731-POCLOUD","original_format":"UMM_JSON","granule_size":"16.816892623901367","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220606-000002-e20220606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.469 + 0.001 37.429 180","-37.469 -180 37.429 -0.001"],"time_start":"2022-06-07T00:00:01.000Z","updated":"2022-06-13T02:02:34.016Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-07T23:59:59.000Z","id":"G2290253233-POCLOUD","original_format":"UMM_JSON","granule_size":"16.193224906921387","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220607-000001-e20220607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.639 + 0.006 37.502 180","-37.639 -180 37.502 -0.001"],"time_start":"2022-06-08T00:00:01.000Z","updated":"2022-06-14T02:41:34.703Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-08T23:59:59.000Z","id":"G2291229336-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220608-000001-e20220608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0.007 37.537 180","-37.595 -180 37.537 -0.001"],"time_start":"2022-06-09T00:00:01.000Z","updated":"2022-06-14T14:58:28.433Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-09T23:59:59.000Z","id":"G2292077359-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220609-000001-e20220609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0.002 37.601 180","-37.603 -180 37.601 -0.005"],"time_start":"2022-06-10T00:00:01.000Z","updated":"2022-06-16T22:23:31.285Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-10T23:59:59.000Z","id":"G2296780523-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220610-000001-e20220610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.606 + 0.002 37.626 180","-37.606 -180 37.626 -0.004"],"time_start":"2022-06-11T00:00:01.000Z","updated":"2022-06-16T22:23:30.387Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-11T23:59:59.000Z","id":"G2296780508-POCLOUD","original_format":"UMM_JSON","granule_size":"16.854042053222656","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220611-000001-e20220611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.676 + 0.001 37.509 180","-37.676 -180 37.509 0"],"time_start":"2022-06-12T00:00:01.000Z","updated":"2022-06-17T01:49:11.529Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-12T23:59:59.000Z","id":"G2296879607-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220612-000001-e20220612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.472 + 0.002 37.518 180","-37.472 -180 37.518 0"],"time_start":"2022-06-13T00:00:01.000Z","updated":"2022-06-17T19:55:31.765Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-13T23:59:59.000Z","id":"G2297401432-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220613-000001-e20220613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0 37.407 180","-37.638 -180 37.407 -0.001"],"time_start":"2022-06-14T00:00:02.000Z","updated":"2022-06-20T02:02:27.663Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-14T23:59:58.000Z","id":"G2298883413-POCLOUD","original_format":"UMM_JSON","granule_size":"14.656428337097168","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220614-000002-e20220614-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.803 + 0.004 37.323 180","-37.803 -180 37.323 -0.003"],"time_start":"2022-06-15T00:00:01.000Z","updated":"2022-06-20T14:01:28.355Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-15T23:59:59.000Z","id":"G2299175113-POCLOUD","original_format":"UMM_JSON","granule_size":"14.41279411315918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220615-000001-e20220615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.957 + 0.001 37.518 180","-38.957 -180 37.518 -0.001"],"time_start":"2022-06-16T00:00:01.000Z","updated":"2022-06-20T13:58:28.448Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-16T23:59:59.000Z","id":"G2299174405-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220616-000001-e20220616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0.002 37.508 180","-37.636 -180 37.508 -0.004"],"time_start":"2022-06-17T00:00:02.000Z","updated":"2022-06-20T13:58:28.654Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-17T23:59:59.000Z","id":"G2299174409-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220617-000002-e20220617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.657 + 0 37.389 180","-37.657 -180 37.389 -0.003"],"time_start":"2022-06-18T00:00:01.000Z","updated":"2022-06-21T19:44:30.237Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-18T23:59:59.000Z","id":"G2300235974-POCLOUD","original_format":"UMM_JSON","granule_size":"14.72207260131836","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220618-000001-e20220618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.55 + 0.001 37.455 180","-37.55 -180 37.455 -0.001"],"time_start":"2022-06-19T00:00:01.000Z","updated":"2022-06-29T19:45:33.692Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-19T23:59:59.000Z","id":"G2314205232-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220619-000001-e20220619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.597 + 0.001 37.378 180","-37.597 -180 37.378 -0.003"],"time_start":"2022-06-20T00:00:01.000Z","updated":"2022-06-29T01:47:28.719Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-20T23:59:59.000Z","id":"G2313015782-POCLOUD","original_format":"UMM_JSON","granule_size":"14.423439025878906","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220620-000001-e20220620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.488 + 0.002 37.354 180","-37.488 -180 37.354 -0.001"],"time_start":"2022-06-21T00:00:02.000Z","updated":"2022-06-29T01:47:27.461Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-21T23:59:59.000Z","id":"G2313015687-POCLOUD","original_format":"UMM_JSON","granule_size":"14.072251319885254","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220621-000002-e20220621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.516 + 0.003 37.305 180","-37.516 -180 37.305 -0.001"],"time_start":"2022-06-22T00:00:01.000Z","updated":"2022-06-27T13:44:29.388Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-22T23:59:59.000Z","id":"G2308274995-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220622-000001-e20220622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.722 + 0.002 37.404 180","-37.722 -180 37.404 -0.001"],"time_start":"2022-06-23T00:00:02.000Z","updated":"2022-06-28T19:51:28.369Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-23T23:59:59.000Z","id":"G2312074805-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220623-000002-e20220623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.551 + 0.003 37.242 180","-37.551 -180 37.242 -0.003"],"time_start":"2022-06-24T00:00:01.000Z","updated":"2022-06-28T13:52:28.812Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-24T23:59:59.000Z","id":"G2311245944-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220624-000001-e20220624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.839 + 0.002 37.423 180","-37.839 -180 37.423 -0.001"],"time_start":"2022-06-25T00:00:01.000Z","updated":"2022-07-07T01:46:32.067Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-25T23:59:59.000Z","id":"G2327918378-POCLOUD","original_format":"UMM_JSON","granule_size":"15.000506401062012","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220625-000001-e20220625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.359 + 0.003 37.643 180","-38.359 -180 37.643 0"],"time_start":"2022-06-26T00:00:01.000Z","updated":"2022-06-28T19:52:31.578Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-26T23:59:59.000Z","id":"G2312077271-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220626-000001-e20220626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.678 + 0.001 37.691 180","-37.678 -180 37.691 -0.004"],"time_start":"2022-06-27T00:00:01.000Z","updated":"2022-07-06T01:50:36.511Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-27T23:59:59.000Z","id":"G2325208456-POCLOUD","original_format":"UMM_JSON","granule_size":"15.613758087158203","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220627-000001-e20220627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.734 + 0.001 37.67 180","-37.734 -180 37.67 -0.005"],"time_start":"2022-06-28T00:00:01.000Z","updated":"2022-07-05T20:05:28.059Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-28T23:59:59.000Z","id":"G2324180864-POCLOUD","original_format":"UMM_JSON","granule_size":"15.920042991638184","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220628-000001-e20220628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.676 + 0 37.656 180","-37.676 -180 37.656 -0.002"],"time_start":"2022-06-29T00:00:02.000Z","updated":"2022-07-05T20:03:30.264Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-29T23:59:59.000Z","id":"G2324177429-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220629-000002-e20220629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.001 37.65 180","-37.669 -180 37.65 -0.008"],"time_start":"2022-06-30T00:00:01.000Z","updated":"2022-07-08T01:48:31.492Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-06-30T23:59:59.000Z","id":"G2331424649-POCLOUD","original_format":"UMM_JSON","granule_size":"16.277320861816406","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220630-000001-e20220630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.584 + 0.001 37.697 180","-37.584 -180 37.697 -0.002"],"time_start":"2022-07-01T00:00:01.000Z","updated":"2022-07-05T20:03:32.218Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-01T23:59:59.000Z","id":"G2324177492-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220701-000001-e20220701-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.519 + 0 37.636 180","-37.519 -180 37.636 -0.003"],"time_start":"2022-07-02T00:00:01.000Z","updated":"2022-07-05T20:02:32.500Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-02T23:59:58.000Z","id":"G2324175443-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220702-000001-e20220702-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.457 + 0.004 37.543 180","-37.457 -180 37.543 -0.003"],"time_start":"2022-07-03T00:00:01.000Z","updated":"2022-07-06T13:47:30.697Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-03T23:59:59.000Z","id":"G2326201636-POCLOUD","original_format":"UMM_JSON","granule_size":"16.520437240600586","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220703-000001-e20220703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.621 + 0.002 37.722 180","-37.621 -180 37.722 -0.001"],"time_start":"2022-07-04T00:00:01.000Z","updated":"2022-07-07T19:47:30.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-04T23:59:59.000Z","id":"G2330360959-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220704-000001-e20220704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.735 + 0 37.794 180","-37.735 -180 37.794 0"],"time_start":"2022-07-05T00:00:01.000Z","updated":"2022-07-08T19:48:58.655Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-05T23:59:59.000Z","id":"G2333346382-POCLOUD","original_format":"UMM_JSON","granule_size":"16.68484878540039","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220705-000001-e20220705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.679 + 0.001 37.754 180","-37.679 -180 37.754 -0.001"],"time_start":"2022-07-06T00:00:01.000Z","updated":"2022-07-09T01:47:28.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-06T23:59:59.000Z","id":"G2334583238-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220706-000001-e20220706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.766 + 0.002 37.83 180","-37.766 -180 37.83 0"],"time_start":"2022-07-07T00:00:01.000Z","updated":"2022-07-11T01:56:32.012Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-07T23:59:59.000Z","id":"G2337561879-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220707-000001-e20220707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.624 + 0.001 37.777 180","-37.624 -180 37.777 -0.001"],"time_start":"2022-07-08T00:00:01.000Z","updated":"2022-07-11T19:47:30.298Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-08T23:59:59.000Z","id":"G2338946344-POCLOUD","original_format":"UMM_JSON","granule_size":"15.397860527038574","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220708-000001-e20220708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.607 + 0.002 37.814 180","-37.607 -180 37.814 -0.001"],"time_start":"2022-07-09T00:00:01.000Z","updated":"2022-08-13T23:14:23.491Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-09T23:59:59.000Z","id":"G2403219906-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220709-000001-e20220709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0.002 37.722 180","-37.623 -180 37.722 -0.002"],"time_start":"2022-07-10T00:00:01.000Z","updated":"2022-07-12T19:47:32.094Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-10T23:59:59.000Z","id":"G2341812472-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220710-000001-e20220710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.655 + 0.006 37.696 180","-37.655 -180 37.696 -0.008"],"time_start":"2022-07-11T00:00:01.000Z","updated":"2022-08-13T23:11:28.886Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-11T23:59:59.000Z","id":"G2403219841-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220711-000001-e20220711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.569 + 0.004 37.703 180","-37.569 -180 37.703 -0.001"],"time_start":"2022-07-12T00:00:01.000Z","updated":"2022-08-13T23:11:28.414Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-12T23:59:59.000Z","id":"G2403219840-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220712-000001-e20220712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.704 + 0 37.74 180","-37.704 -180 37.74 -0.002"],"time_start":"2022-07-13T00:00:01.000Z","updated":"2022-08-13T23:08:28.034Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-13T23:59:59.000Z","id":"G2403219782-POCLOUD","original_format":"UMM_JSON","granule_size":"16.41480827331543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220713-000001-e20220713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.66 + 0 37.628 180","-37.66 -180 37.628 0"],"time_start":"2022-07-14T00:00:02.000Z","updated":"2022-08-13T23:08:23.589Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-14T23:59:59.000Z","id":"G2403219779-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220714-000002-e20220714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.715 + 0.003 37.666 180","-37.715 -180 37.666 -0.002"],"time_start":"2022-07-15T00:00:02.000Z","updated":"2022-08-13T23:08:30.336Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-15T23:59:59.000Z","id":"G2403219783-POCLOUD","original_format":"UMM_JSON","granule_size":"16.414612770080566","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220715-000002-e20220715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.706 + 0.001 37.691 180","-37.706 -180 37.691 -0.001"],"time_start":"2022-07-16T00:00:02.000Z","updated":"2022-08-13T23:09:29.779Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-16T23:59:59.000Z","id":"G2403219811-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220716-000002-e20220716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.6 + 0.001 37.657 180","-37.6 -180 37.657 -0.002"],"time_start":"2022-07-17T00:00:01.000Z","updated":"2022-08-13T23:09:25.167Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-17T23:59:59.000Z","id":"G2403219810-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220717-000001-e20220717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.678 + 0.001 37.711 180","-37.678 -180 37.711 -0.001"],"time_start":"2022-07-18T00:00:02.000Z","updated":"2022-08-13T23:12:24.995Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-18T23:59:59.000Z","id":"G2403219871-POCLOUD","original_format":"UMM_JSON","granule_size":"16.262246131896973","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220718-000002-e20220718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.677 + 0.002 37.573 180","-37.677 -180 37.573 -0.003"],"time_start":"2022-07-19T00:00:02.000Z","updated":"2022-08-13T23:15:24.792Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-19T23:59:59.000Z","id":"G2403219955-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220719-000002-e20220719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.774 + 0.002 37.648 180","-37.774 -180 37.648 -0.001"],"time_start":"2022-07-20T00:00:01.000Z","updated":"2022-08-13T23:15:51.717Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-20T23:59:59.000Z","id":"G2403219964-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220720-000001-e20220720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.663 + 0 37.771 180","-37.663 -180 37.771 -0.002"],"time_start":"2022-07-21T00:00:01.000Z","updated":"2022-08-13T23:12:34.996Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-21T23:59:59.000Z","id":"G2403219875-POCLOUD","original_format":"UMM_JSON","granule_size":"15.694536209106445","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220721-000001-e20220721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.776 + 0.001 37.671 180","-37.776 -180 37.671 -0.003"],"time_start":"2022-07-22T00:00:02.000Z","updated":"2022-08-13T23:10:23.613Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-22T23:59:59.000Z","id":"G2403219827-POCLOUD","original_format":"UMM_JSON","granule_size":"15.948464393615723","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220722-000002-e20220722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.772 + 0.001 37.703 180","-37.772 -180 37.703 0"],"time_start":"2022-07-23T00:00:02.000Z","updated":"2022-08-13T23:17:26.866Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-23T23:59:59.000Z","id":"G2403220159-POCLOUD","original_format":"UMM_JSON","granule_size":"16.061574935913086","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220723-000002-e20220723-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.589 + 0 37.484 180","-37.589 -180 37.484 0"],"time_start":"2022-07-24T00:00:01.000Z","updated":"2022-08-13T23:18:30.341Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-24T23:59:59.000Z","id":"G2403220192-POCLOUD","original_format":"UMM_JSON","granule_size":"15.808192253112793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220724-000001-e20220724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.56 + 0.001 37.569 180","-37.56 -180 37.569 0"],"time_start":"2022-07-25T00:00:01.000Z","updated":"2022-08-13T23:13:24.595Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-25T23:59:59.000Z","id":"G2403219881-POCLOUD","original_format":"UMM_JSON","granule_size":"15.853915214538574","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220725-000001-e20220725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.652 + 0.001 37.434 180","-37.652 -180 37.434 -0.001"],"time_start":"2022-07-26T00:00:02.000Z","updated":"2022-09-01T19:58:37.745Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-26T23:59:59.000Z","id":"G2403220161-POCLOUD","original_format":"UMM_JSON","granule_size":"14.293045997619629","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220726-000002-e20220726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.742 + 0 37.574 180","-37.742 -180 37.574 -0.004"],"time_start":"2022-07-27T00:00:02.000Z","updated":"2022-08-13T23:22:23.028Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-27T23:59:59.000Z","id":"G2403220285-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220727-000002-e20220727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0.002 37.505 180","-37.73 -180 37.505 -0.002"],"time_start":"2022-07-28T00:00:01.000Z","updated":"2022-08-13T23:07:30.791Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-28T23:59:59.000Z","id":"G2403219766-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220728-000001-e20220728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.787 + 0 37.635 180","-37.787 -180 37.635 0"],"time_start":"2022-07-29T00:00:02.000Z","updated":"2022-08-13T23:15:50.633Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-29T23:59:59.000Z","id":"G2403219962-POCLOUD","original_format":"UMM_JSON","granule_size":"16.471078872680664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220729-000002-e20220729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0.001 37.635 180","-37.638 -180 37.635 -0.002"],"time_start":"2022-07-30T00:00:02.000Z","updated":"2022-08-13T23:14:28.369Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-30T23:59:59.000Z","id":"G2403219913-POCLOUD","original_format":"UMM_JSON","granule_size":"16.487722396850586","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220730-000002-e20220730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.686 + 0.001 37.669 180","-37.686 -180 37.669 0"],"time_start":"2022-07-31T00:00:01.000Z","updated":"2022-08-13T23:19:28.868Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-07-31T23:59:58.000Z","id":"G2403220197-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220731-000001-e20220731-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.69 + 0.001 37.62 180","-37.69 -180 37.62 -0.001"],"time_start":"2022-08-01T00:00:02.000Z","updated":"2022-08-13T23:07:32.197Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-01T23:59:59.000Z","id":"G2403219767-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220801-000002-e20220801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.675 + 0.003 37.509 180","-37.675 -180 37.509 -0.003"],"time_start":"2022-08-02T00:00:01.000Z","updated":"2022-08-13T23:14:26.437Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-02T23:59:59.000Z","id":"G2403219912-POCLOUD","original_format":"UMM_JSON","granule_size":"16.25758457183838","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220802-000001-e20220802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.196 + 0.001 37.522 180","-38.196 -180 37.522 -0.001"],"time_start":"2022-08-03T00:00:01.000Z","updated":"2022-08-13T23:19:24.314Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-03T23:59:59.000Z","id":"G2403220195-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220803-000001-e20220803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.325 + 0.002 37.499 180","-38.325 -180 37.499 -0.002"],"time_start":"2022-08-04T00:00:02.000Z","updated":"2022-08-13T23:10:25.344Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-04T23:59:59.000Z","id":"G2403219831-POCLOUD","original_format":"UMM_JSON","granule_size":"15.97317123413086","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220804-000002-e20220804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.585 + 0.001 37.361 180","-37.585 -180 37.361 -0.001"],"time_start":"2022-08-05T00:00:02.000Z","updated":"2022-08-13T23:11:23.316Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-05T23:59:59.000Z","id":"G2403219839-POCLOUD","original_format":"UMM_JSON","granule_size":"14.149893760681152","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220805-000002-e20220805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.566 + 0.002 37.546 180","-37.566 -180 37.546 -0.001"],"time_start":"2022-08-06T00:00:01.000Z","updated":"2022-08-15T19:46:43.023Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-06T23:59:59.000Z","id":"G2404869957-POCLOUD","original_format":"UMM_JSON","granule_size":"13.199999809265137","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220806-000001-e20220806-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.544 + 0.001 37.473 180","-37.544 -180 37.473 0"],"time_start":"2022-08-07T00:00:01.000Z","updated":"2022-08-15T19:49:28.964Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-07T23:59:59.000Z","id":"G2404878369-POCLOUD","original_format":"UMM_JSON","granule_size":"13.009584426879883","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220807-000001-e20220807-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.591 + 0.001 37.471 180","-37.591 -180 37.471 -0.008"],"time_start":"2022-08-08T00:00:00.000Z","updated":"2022-08-13T23:09:23.397Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-08T23:59:59.000Z","id":"G2403219802-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220808-000000-e20220808-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.532 + 0.007 37.561 180","-37.532 -180 37.561 -0.001"],"time_start":"2022-08-09T00:00:01.000Z","updated":"2022-08-13T23:17:57.208Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-09T23:59:59.000Z","id":"G2403220181-POCLOUD","original_format":"UMM_JSON","granule_size":"14.97929573059082","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220809-000001-e20220809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.72 + 0.003 37.591 180","-38.72 -180 37.591 0"],"time_start":"2022-08-10T00:00:01.000Z","updated":"2022-08-14T19:54:28.978Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-10T23:59:59.000Z","id":"G2403496218-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220810-000001-e20220810-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-39.543 + 0.004 37.552 180","-39.543 -180 37.552 -0.002"],"time_start":"2022-08-11T00:00:01.000Z","updated":"2022-08-15T19:46:25.929Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-11T23:59:58.000Z","id":"G2404868982-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220811-000001-e20220811-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.304 + 0.006 37.531 180","-38.304 -180 37.531 -0.002"],"time_start":"2022-08-12T00:00:02.000Z","updated":"2022-08-15T13:50:28.098Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-12T23:59:59.000Z","id":"G2403909568-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220812-000002-e20220812-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.455 + 0.001 37.674 180","-37.455 -180 37.674 -0.003"],"time_start":"2022-08-13T00:00:01.000Z","updated":"2022-08-17T01:51:31.815Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-13T23:59:59.000Z","id":"G2406860223-POCLOUD","original_format":"UMM_JSON","granule_size":"16.462772369384766","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220813-000001-e20220813-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.354 + 0.002 37.634 180","-37.354 -180 37.634 0"],"time_start":"2022-08-14T00:00:02.000Z","updated":"2022-08-17T01:51:29.600Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-14T23:59:59.000Z","id":"G2406860181-POCLOUD","original_format":"UMM_JSON","granule_size":"16.49200439453125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220814-000002-e20220814-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.547 + 0.001 37.582 180","-37.547 -180 37.582 -0.005"],"time_start":"2022-08-15T00:00:01.000Z","updated":"2022-08-18T01:49:28.056Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-15T23:59:59.000Z","id":"G2408244402-POCLOUD","original_format":"UMM_JSON","granule_size":"16.675909996032715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220815-000001-e20220815-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.521 + 0.003 37.594 180","-37.521 -180 37.594 -0.003"],"time_start":"2022-08-16T00:00:01.000Z","updated":"2022-08-18T19:57:29.697Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-16T23:59:59.000Z","id":"G2408784750-POCLOUD","original_format":"UMM_JSON","granule_size":"16.727438926696777","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220816-000001-e20220816-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.455 + 0.001 37.462 180","-37.455 -180 37.462 -0.001"],"time_start":"2022-08-17T00:00:01.000Z","updated":"2022-08-19T19:54:30.998Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-17T23:59:59.000Z","id":"G2410600413-POCLOUD","original_format":"UMM_JSON","granule_size":"16.983242988586426","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220817-000001-e20220817-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.518 + 0.004 37.451 180","-37.518 -180 37.451 -0.005"],"time_start":"2022-08-18T00:00:02.000Z","updated":"2022-08-22T19:50:35.117Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-18T23:59:59.000Z","id":"G2414416955-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220818-000002-e20220818-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.446 + 0 37.43 180","-37.446 -180 37.43 -0.003"],"time_start":"2022-08-19T00:00:01.000Z","updated":"2022-08-22T19:50:32.517Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-19T23:59:59.000Z","id":"G2414416786-POCLOUD","original_format":"UMM_JSON","granule_size":"16.498088836669922","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220819-000001-e20220819-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.409 + 0.002 37.55 180","-37.409 -180 37.55 0"],"time_start":"2022-08-20T00:00:01.000Z","updated":"2022-08-23T19:53:36.857Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-20T23:59:59.000Z","id":"G2417176932-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220820-000001-e20220820-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.514 + 0 37.604 180","-37.514 -180 37.604 -0.002"],"time_start":"2022-08-21T00:00:02.000Z","updated":"2022-08-23T19:53:37.750Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-21T23:59:59.000Z","id":"G2417176920-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220821-000002-e20220821-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.534 + 0.001 37.605 180","-37.534 -180 37.605 -0.001"],"time_start":"2022-08-22T00:00:01.000Z","updated":"2022-08-24T19:59:31.556Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-22T23:59:59.000Z","id":"G2418971868-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220822-000001-e20220822-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.552 + 0.005 37.569 180","-37.552 -180 37.569 -0.001"],"time_start":"2022-08-23T00:00:01.000Z","updated":"2022-08-26T20:09:35.820Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-23T23:59:59.000Z","id":"G2423402946-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220823-000001-e20220823-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.677 + 0.001 37.54 180","-37.677 -180 37.54 -0.001"],"time_start":"2022-08-24T00:00:02.000Z","updated":"2022-08-26T20:09:32.307Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-24T23:59:59.000Z","id":"G2423402839-POCLOUD","original_format":"UMM_JSON","granule_size":"15.8887939453125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220824-000002-e20220824-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.679 + 0.001 37.682 180","-37.679 -180 37.682 -0.009"],"time_start":"2022-08-25T00:00:01.000Z","updated":"2022-08-27T19:59:30.770Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-25T23:59:59.000Z","id":"G2424869515-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220825-000001-e20220825-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.608 + 0.001 37.623 180","-37.608 -180 37.623 -0.002"],"time_start":"2022-08-26T00:00:01.000Z","updated":"2022-08-29T19:57:36.946Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-26T23:59:59.000Z","id":"G2426518143-POCLOUD","original_format":"UMM_JSON","granule_size":"16.58751678466797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220826-000001-e20220826-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.628 + 0.001 37.556 180","-37.628 -180 37.556 -0.001"],"time_start":"2022-08-27T00:00:01.000Z","updated":"2022-08-29T19:58:25.082Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-27T23:59:59.000Z","id":"G2426520009-POCLOUD","original_format":"UMM_JSON","granule_size":"16.691935539245605","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220827-000001-e20220827-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.588 + 0 37.615 180","-37.588 -180 37.615 0"],"time_start":"2022-08-28T00:00:01.000Z","updated":"2022-08-30T21:15:30.328Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-28T23:59:59.000Z","id":"G2429741433-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220828-000001-e20220828-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.573 + 0 37.575 180","-37.573 -180 37.575 0"],"time_start":"2022-08-29T00:00:01.000Z","updated":"2022-09-01T01:55:34.364Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-29T23:59:59.000Z","id":"G2431990392-POCLOUD","original_format":"UMM_JSON","granule_size":"16.697226524353027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220829-000001-e20220829-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.588 + 0.001 37.498 180","-37.588 -180 37.498 -0.004"],"time_start":"2022-08-30T00:00:01.000Z","updated":"2022-09-02T20:36:25.837Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-30T23:59:59.000Z","id":"G2435998709-POCLOUD","original_format":"UMM_JSON","granule_size":"17.132286071777344","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220830-000001-e20220830-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.763 + 0.001 37.629 180","-37.763 -180 37.629 -0.002"],"time_start":"2022-08-31T00:00:01.000Z","updated":"2022-09-03T14:00:31.099Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-08-31T23:59:59.000Z","id":"G2437302784-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220831-000001-e20220831-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.762 + 0 37.739 180","-37.762 -180 37.739 -0.007"],"time_start":"2022-09-01T00:00:01.000Z","updated":"2022-09-04T14:12:28.974Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-01T23:59:59.000Z","id":"G2437820352-POCLOUD","original_format":"UMM_JSON","granule_size":"16.759384155273438","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220901-000001-e20220901-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.792 + 0.001 37.751 180","-37.792 -180 37.751 -0.002"],"time_start":"2022-09-02T00:00:01.000Z","updated":"2022-09-06T20:23:31.737Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-02T23:59:59.000Z","id":"G2439577479-POCLOUD","original_format":"UMM_JSON","granule_size":"16.803770065307617","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220902-000001-e20220902-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.727 + 0.001 37.745 180","-37.727 -180 37.745 -0.003"],"time_start":"2022-09-03T00:00:02.000Z","updated":"2022-09-05T20:15:32.276Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-03T23:59:59.000Z","id":"G2438472204-POCLOUD","original_format":"UMM_JSON","granule_size":"17.21115207672119","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220903-000002-e20220903-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.724 + 0.002 37.649 180","-37.724 -180 37.649 -0.004"],"time_start":"2022-09-04T00:00:01.000Z","updated":"2022-09-07T20:58:28.462Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-04T23:59:59.000Z","id":"G2442361987-POCLOUD","original_format":"UMM_JSON","granule_size":"16.435054779052734","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220904-000001-e20220904-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0 37.717 180","-37.747 -180 37.717 -0.001"],"time_start":"2022-09-05T00:00:01.000Z","updated":"2022-09-08T20:12:29.944Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-05T23:59:59.000Z","id":"G2444067543-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220905-000001-e20220905-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.713 + 0.001 37.668 180","-37.713 -180 37.668 -0.003"],"time_start":"2022-09-06T00:00:01.000Z","updated":"2022-09-08T20:15:27.065Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-06T23:59:59.000Z","id":"G2444082130-POCLOUD","original_format":"UMM_JSON","granule_size":"16.203957557678223","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220906-000001-e20220906-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0.003 37.643 180","-37.741 -180 37.643 -0.002"],"time_start":"2022-09-07T00:00:01.000Z","updated":"2022-09-12T02:18:28.141Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-07T23:59:59.000Z","id":"G2448879754-POCLOUD","original_format":"UMM_JSON","granule_size":"16.538064002990723","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220907-000001-e20220907-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.749 + 0.001 37.643 180","-37.749 -180 37.643 -0.001"],"time_start":"2022-09-08T00:00:02.000Z","updated":"2022-09-12T02:21:28.937Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-08T23:59:59.000Z","id":"G2448880897-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220908-000002-e20220908-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.692 + 0.005 37.622 180","-37.692 -180 37.622 -0.001"],"time_start":"2022-09-09T00:00:01.000Z","updated":"2022-09-13T14:24:44.785Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-09T23:59:58.000Z","id":"G2451433748-POCLOUD","original_format":"UMM_JSON","granule_size":"17.186016082763672","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220909-000001-e20220909-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.734 + 0.005 37.643 180","-37.734 -180 37.643 -0.001"],"time_start":"2022-09-10T00:00:01.000Z","updated":"2022-09-15T21:14:59.526Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-10T23:59:59.000Z","id":"G2461458689-POCLOUD","original_format":"UMM_JSON","granule_size":"16.9602689743042","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220910-000001-e20220910-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.729 + 0.001 37.692 180","-37.729 -180 37.692 -0.002"],"time_start":"2022-09-11T00:00:01.000Z","updated":"2022-09-16T14:07:31.311Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-11T23:59:59.000Z","id":"G2463647286-POCLOUD","original_format":"UMM_JSON","granule_size":"16.741357803344727","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220911-000001-e20220911-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.607 + 0 37.641 180","-37.607 -180 37.641 -0.001"],"time_start":"2022-09-12T00:00:02.000Z","updated":"2022-09-16T20:55:34.043Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-12T23:59:59.000Z","id":"G2465306756-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220912-000002-e20220912-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.695 + 0.001 37.611 180","-37.695 -180 37.611 -0.003"],"time_start":"2022-09-13T00:00:02.000Z","updated":"2022-09-18T03:36:29.293Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-13T23:59:59.000Z","id":"G2466463346-POCLOUD","original_format":"UMM_JSON","granule_size":"16.516197204589844","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220913-000002-e20220913-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.671 + 0.002 37.576 180","-37.671 -180 37.576 0"],"time_start":"2022-09-14T00:00:01.000Z","updated":"2022-09-17T21:23:29.692Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-14T23:59:59.000Z","id":"G2466263259-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220914-000001-e20220914-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.769 + 0.002 37.664 180","-37.769 -180 37.664 0"],"time_start":"2022-09-15T00:00:02.000Z","updated":"2022-09-20T22:09:31.413Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-15T23:59:59.000Z","id":"G2472239918-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220915-000002-e20220915-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.744 + 0.002 37.788 180","-37.744 -180 37.788 -0.002"],"time_start":"2022-09-16T00:00:01.000Z","updated":"2022-09-21T21:23:27.480Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-16T23:59:59.000Z","id":"G2474636239-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220916-000001-e20220916-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.768 + 0.005 37.758 180","-37.768 -180 37.758 0"],"time_start":"2022-09-17T00:00:01.000Z","updated":"2022-09-21T21:23:30.216Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-17T23:59:59.000Z","id":"G2474636494-POCLOUD","original_format":"UMM_JSON","granule_size":"16.33407688140869","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220917-000001-e20220917-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.794 + 0 37.797 180","-37.794 -180 37.797 -0.003"],"time_start":"2022-09-18T00:00:01.000Z","updated":"2022-09-21T21:26:25.760Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-18T23:59:59.000Z","id":"G2474647969-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220918-000001-e20220918-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.717 + 0.006 37.678 180","-37.717 -180 37.678 0"],"time_start":"2022-09-19T00:00:02.000Z","updated":"2022-09-25T20:25:31.351Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-19T23:59:59.000Z","id":"G2483487192-POCLOUD","original_format":"UMM_JSON","granule_size":"15.920108795166016","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220919-000002-e20220919-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.779 + 0.005 37.775 180","-37.779 -180 37.775 -0.004"],"time_start":"2022-09-20T00:00:01.000Z","updated":"2022-09-24T20:26:00.761Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-20T23:59:59.000Z","id":"G2482898857-POCLOUD","original_format":"UMM_JSON","granule_size":"15.940892219543457","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220920-000001-e20220920-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.703 + 0.002 37.617 180","-37.703 -180 37.617 -0.001"],"time_start":"2022-09-21T00:00:02.000Z","updated":"2022-09-25T08:16:32.674Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-21T23:59:59.000Z","id":"G2483184961-POCLOUD","original_format":"UMM_JSON","granule_size":"16.244118690490723","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220921-000002-e20220921-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.487 + 0.005 37.561 180","-37.487 -180 37.561 -0.001"],"time_start":"2022-09-22T00:00:02.000Z","updated":"2022-09-26T04:33:27.491Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-22T23:59:59.000Z","id":"G2483691677-POCLOUD","original_format":"UMM_JSON","granule_size":"15.747767448425293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220922-000002-e20220922-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.561 + 0 37.646 180","-37.561 -180 37.646 0"],"time_start":"2022-09-23T00:00:01.000Z","updated":"2022-09-27T21:01:28.283Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-23T23:59:59.000Z","id":"G2485236798-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220923-000001-e20220923-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.001 37.549 180","-37.669 -180 37.549 0"],"time_start":"2022-09-24T00:00:01.000Z","updated":"2022-09-28T20:24:27.958Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-24T23:59:59.000Z","id":"G2487352163-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220924-000001-e20220924-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.636 + 0.001 37.655 180","-37.636 -180 37.655 -0.001"],"time_start":"2022-09-25T00:00:01.000Z","updated":"2022-09-28T20:26:24.437Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-25T23:59:59.000Z","id":"G2487355969-POCLOUD","original_format":"UMM_JSON","granule_size":"16.210524559020996","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220925-000001-e20220925-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.647 + 0.005 37.672 180","-37.647 -180 37.672 -0.002"],"time_start":"2022-09-26T00:00:01.000Z","updated":"2022-09-29T20:12:28.687Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-26T23:59:59.000Z","id":"G2490194727-POCLOUD","original_format":"UMM_JSON","granule_size":"16.498351097106934","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220926-000001-e20220926-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.666 + 0 37.662 180","-37.666 -180 37.662 -0.002"],"time_start":"2022-09-27T00:00:01.000Z","updated":"2022-10-01T20:12:33.169Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-27T23:59:59.000Z","id":"G2495127096-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220927-000001-e20220927-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.633 + 0 37.594 180","-37.633 -180 37.594 0"],"time_start":"2022-09-28T00:00:02.000Z","updated":"2022-10-04T02:10:34.659Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-28T23:59:59.000Z","id":"G2499136764-POCLOUD","original_format":"UMM_JSON","granule_size":"16.30433464050293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220928-000002-e20220928-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.655 + 0.001 37.608 180","-37.655 -180 37.608 -0.002"],"time_start":"2022-09-29T00:00:00.000Z","updated":"2022-10-03T02:15:35.105Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-29T23:59:59.000Z","id":"G2495934961-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220929-000000-e20220929-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.383 + 0.002 37.545 180","-37.383 -180 37.545 0"],"time_start":"2022-09-30T00:00:02.000Z","updated":"2022-10-05T02:47:29.037Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-09-30T23:59:59.000Z","id":"G2500474427-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20220930-000002-e20220930-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.444 + 0.002 37.552 180","-37.444 -180 37.552 0"],"time_start":"2022-10-01T00:00:02.000Z","updated":"2022-10-06T02:08:29.268Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-01T23:59:59.000Z","id":"G2501184636-POCLOUD","original_format":"UMM_JSON","granule_size":"16.814939498901367","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221001-000002-e20221001-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.518 + 0.001 37.493 180","-37.518 -180 37.493 -0.001"],"time_start":"2022-10-02T00:00:01.000Z","updated":"2022-10-05T21:11:35.233Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-02T23:59:59.000Z","id":"G2500926308-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221002-000001-e20221002-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.475 + 0 37.547 180","-37.475 -180 37.547 -0.002"],"time_start":"2022-10-03T00:00:01.000Z","updated":"2022-10-06T14:12:33.091Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-03T23:59:59.000Z","id":"G2501677386-POCLOUD","original_format":"UMM_JSON","granule_size":"17.78697967529297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221003-000001-e20221003-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0.003 37.492 180","-37.616 -180 37.492 -0.002"],"time_start":"2022-10-04T00:00:01.000Z","updated":"2022-10-07T20:01:38.459Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-04T23:59:59.000Z","id":"G2504027673-POCLOUD","original_format":"UMM_JSON","granule_size":"18.436813354492188","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221004-000001-e20221004-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.642 + 0 37.623 180","-37.642 -180 37.623 0"],"time_start":"2022-10-05T00:00:01.000Z","updated":"2022-10-08T20:06:01.928Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-05T23:59:59.000Z","id":"G2506364793-POCLOUD","original_format":"UMM_JSON","granule_size":"18.093923568725586","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221005-000001-e20221005-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.531 + 0 37.639 180","-37.531 -180 37.639 -0.001"],"time_start":"2022-10-06T00:00:02.000Z","updated":"2022-10-09T14:00:57.330Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-06T23:59:59.000Z","id":"G2507155714-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221006-000002-e20221006-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.64 + 0.002 37.638 180","-37.64 -180 37.638 0"],"time_start":"2022-10-07T00:00:01.000Z","updated":"2022-10-10T02:02:31.909Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-07T23:59:59.000Z","id":"G2507785836-POCLOUD","original_format":"UMM_JSON","granule_size":"16.93305015563965","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221007-000001-e20221007-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.556 + 0 37.528 180","-37.556 -180 37.528 -0.004"],"time_start":"2022-10-08T00:00:02.000Z","updated":"2022-10-11T20:04:57.203Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-08T23:59:59.000Z","id":"G2509240646-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221008-000002-e20221008-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.547 + 0.003 37.515 180","-37.547 -180 37.515 0"],"time_start":"2022-10-09T00:00:01.000Z","updated":"2022-10-12T20:02:41.528Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-09T23:59:59.000Z","id":"G2510491802-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221009-000001-e20221009-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.514 + 0.001 37.487 180","-37.514 -180 37.487 -0.002"],"time_start":"2022-10-10T00:00:01.000Z","updated":"2022-10-12T20:04:32.110Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-10T23:59:59.000Z","id":"G2510493795-POCLOUD","original_format":"UMM_JSON","granule_size":"17.457175254821777","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221010-000001-e20221010-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.619 + 0 37.518 180","-37.619 -180 37.518 0"],"time_start":"2022-10-11T00:00:01.000Z","updated":"2022-10-13T21:06:29.375Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-11T23:59:59.000Z","id":"G2512103095-POCLOUD","original_format":"UMM_JSON","granule_size":"17.150025367736816","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221011-000001-e20221011-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.6 + 0.003 37.526 180","-37.6 -180 37.526 -0.001"],"time_start":"2022-10-12T00:00:01.000Z","updated":"2022-10-20T02:02:01.994Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-12T23:59:59.000Z","id":"G2519672853-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221012-000001-e20221012-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.602 + 0.001 37.426 180","-37.602 -180 37.426 0"],"time_start":"2022-10-13T00:00:02.000Z","updated":"2022-10-20T08:13:31.256Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-13T23:59:59.000Z","id":"G2519903871-POCLOUD","original_format":"UMM_JSON","granule_size":"16.594804763793945","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221013-000002-e20221013-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.629 + 0 37.426 180","-37.629 -180 37.426 -0.003"],"time_start":"2022-10-14T00:00:01.000Z","updated":"2022-10-21T02:05:02.959Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-14T23:59:59.000Z","id":"G2520947306-POCLOUD","original_format":"UMM_JSON","granule_size":"17.03275203704834","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221014-000001-e20221014-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.618 + 0 37.395 180","-37.618 -180 37.395 -0.001"],"time_start":"2022-10-15T00:00:02.000Z","updated":"2022-10-20T19:55:28.244Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-15T23:59:59.000Z","id":"G2520569476-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221015-000002-e20221015-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.53 + 0.001 37.413 180","-37.53 -180 37.413 -0.001"],"time_start":"2022-10-16T00:00:01.000Z","updated":"2022-10-21T02:05:04.218Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-16T23:59:59.000Z","id":"G2520947316-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221016-000001-e20221016-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.463 + 0 37.318 180","-37.463 -180 37.318 -0.001"],"time_start":"2022-10-17T00:00:02.000Z","updated":"2022-10-21T19:55:27.608Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-17T23:59:59.000Z","id":"G2521817716-POCLOUD","original_format":"UMM_JSON","granule_size":"16.90714931488037","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221017-000002-e20221017-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0 38.266 180","-37.644 -180 38.266 0"],"time_start":"2022-10-22T00:00:01.000Z","updated":"2022-10-27T02:02:35.034Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-22T23:59:59.000Z","id":"G2526186134-POCLOUD","original_format":"UMM_JSON","granule_size":"16.339232444763184","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221022-000001-e20221022-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.581 + 0 37.57 180","-37.581 -180 37.57 0"],"time_start":"2022-10-23T00:00:01.000Z","updated":"2022-10-27T02:05:41.040Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-23T23:59:59.000Z","id":"G2526186345-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221023-000001-e20221023-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.646 + 0.002 37.571 180","-37.646 -180 37.571 -0.002"],"time_start":"2022-10-24T00:00:01.000Z","updated":"2022-10-27T02:02:29.171Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-24T23:59:59.000Z","id":"G2526186125-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221024-000001-e20221024-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0.001 38.389 180","-37.603 -180 38.389 -0.001"],"time_start":"2022-10-25T00:00:01.000Z","updated":"2022-10-29T19:55:37.326Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-25T23:59:59.000Z","id":"G2529897764-POCLOUD","original_format":"UMM_JSON","granule_size":"16.9940824508667","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221025-000001-e20221025-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]}]}}' + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - CMR-Hits, CMR-Request-Id, X-Request-Id, CMR-Scroll-Id, CMR-Search-After, CMR-Timed-Out, + CMR-Shapefile-Original-Point-Count, CMR-Shapefile-Simplified-Point-Count + CMR-Hits: + - '2285' + CMR-Request-Id: + - 3b6669e5-45cc-4212-9b18-4d7a21d09fdf + CMR-Search-After: + - '["pocloud",1666656001000,2529897764]' + CMR-Took: + - '11119' + Connection: + - keep-alive + Content-Type: + - application/json;charset=utf-8 + Date: + - Mon, 14 Aug 2023 17:02:55 GMT + Server: + - ServerTokens ProductOnly + Strict-Transport-Security: + - max-age=31536000 + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding, User-Agent + Via: + - 1.1 b014854bd0108b7ed0058504b69ccb5a.cloudfront.net (CloudFront) + X-Amz-Cf-Id: + - 89jFxNOAP2BJdfGPQi6oylUHxdLRukieRhU6mpGEdKG7qF-YaT3ZnA== + X-Amz-Cf-Pop: + - SFO53-C1 + X-Cache: + - Miss from cloudfront + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Request-Id: + - 89jFxNOAP2BJdfGPQi6oylUHxdLRukieRhU6mpGEdKG7qF-YaT3ZnA== + X-XSS-Protection: + - 1; mode=block + content-length: + - '24473285' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + cmr-search-after: + - '["pocloud",1666656001000,2529897764]' + method: GET + uri: https://cmr.earthdata.nasa.gov/search/granules.json?short_name=CYGNSS_NOAA_L2_SWSP_25KM_V1.2&page_size=285 + response: + body: + string: '{"feed":{"updated":"2023-08-14T17:02:57.997Z","id":"https://cmr.earthdata.nasa.gov:443/search/granules.json?short_name=CYGNSS_NOAA_L2_SWSP_25KM_V1.2&page_size=285","title":"ECHO + granule metadata","entry":[{"boxes":["-37.565 0.002 37.554 180","-37.565 -180 + 37.554 -0.002"],"time_start":"2022-10-26T00:00:02.000Z","updated":"2022-10-30T02:06:31.322Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-26T23:59:59.000Z","id":"G2530146958-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221026-000002-e20221026-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.563 + 0.002 37.561 180","-37.563 -180 37.561 -0.002"],"time_start":"2022-10-27T00:00:02.000Z","updated":"2022-11-02T20:15:37.072Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-27T23:59:59.000Z","id":"G2532542196-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221027-000002-e20221027-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.663 + 0.002 37.672 180","-37.663 -180 37.672 -0.001"],"time_start":"2022-10-28T00:00:02.000Z","updated":"2022-11-02T20:15:29.160Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-28T23:59:59.000Z","id":"G2532542129-POCLOUD","original_format":"UMM_JSON","granule_size":"14.986532211303711","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221028-000002-e20221028-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0.001 37.789 180","-37.658 -180 37.789 -0.002"],"time_start":"2022-10-29T00:00:02.000Z","updated":"2022-12-06T19:48:37.771Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-29T23:59:59.000Z","id":"G2559941787-POCLOUD","original_format":"UMM_JSON","granule_size":"14.559414863586426","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221029-000002-e20221029-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.614 + 0 37.823 180","-37.614 -180 37.823 -0.001"],"time_start":"2022-10-30T00:00:01.000Z","updated":"2022-12-06T19:48:29.457Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-30T23:59:59.000Z","id":"G2559941745-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221030-000001-e20221030-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.776 + 0.001 37.724 180","-37.776 -180 37.724 -0.001"],"time_start":"2022-10-31T00:00:01.000Z","updated":"2022-11-04T14:13:30.404Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-10-31T23:59:59.000Z","id":"G2534557670-POCLOUD","original_format":"UMM_JSON","granule_size":"15.677757263183594","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221031-000001-e20221031-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.664 + 0.001 37.84 180","-37.664 -180 37.84 -0.002"],"time_start":"2022-11-01T00:00:01.000Z","updated":"2022-11-05T14:11:27.978Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-01T23:59:59.000Z","id":"G2535381807-POCLOUD","original_format":"UMM_JSON","granule_size":"18.003857612609863","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221101-000001-e20221101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.746 + 0.002 37.674 180","-37.746 -180 37.674 -0.001"],"time_start":"2022-11-02T00:00:02.000Z","updated":"2022-11-07T20:27:32.672Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-02T23:59:59.000Z","id":"G2536901424-POCLOUD","original_format":"UMM_JSON","granule_size":"18.190007209777832","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221102-000002-e20221102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.759 + 0.001 37.743 180","-37.759 -180 37.743 -0.001"],"time_start":"2022-11-03T00:00:02.000Z","updated":"2022-11-08T20:10:35.932Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-03T23:59:59.000Z","id":"G2538046172-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221103-000002-e20221103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0.001 37.716 180","-37.595 -180 37.716 -0.001"],"time_start":"2022-11-04T00:00:02.000Z","updated":"2022-11-08T02:11:28.711Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-04T23:59:59.000Z","id":"G2537171736-POCLOUD","original_format":"UMM_JSON","granule_size":"16.92432403564453","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221104-000002-e20221104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0.007 37.745 180","-37.641 -180 37.745 -0.001"],"time_start":"2022-11-05T00:00:01.000Z","updated":"2022-11-08T20:10:28.218Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-05T23:59:59.000Z","id":"G2538046165-POCLOUD","original_format":"UMM_JSON","granule_size":"16.63867950439453","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221105-000001-e20221105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.591 + 0.004 37.655 180","-37.591 -180 37.655 -0.005"],"time_start":"2022-11-06T00:00:02.000Z","updated":"2022-11-10T20:09:33.882Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-06T23:59:59.000Z","id":"G2540117062-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221106-000002-e20221106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.693 + 0.001 37.715 180","-37.693 -180 37.715 -0.001"],"time_start":"2022-11-07T00:00:02.000Z","updated":"2022-11-13T20:00:29.986Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-07T23:59:59.000Z","id":"G2543491223-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221107-000002-e20221107-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.731 + 0.002 37.714 180","-37.731 -180 37.714 0"],"time_start":"2022-11-08T00:00:01.000Z","updated":"2022-11-13T20:00:28.488Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-08T23:59:59.000Z","id":"G2543491222-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221108-000001-e20221108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0.001 37.646 180","-37.638 -180 37.646 -0.001"],"time_start":"2022-11-09T00:00:01.000Z","updated":"2022-11-14T19:55:32.640Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-09T23:59:59.000Z","id":"G2544533231-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221109-000001-e20221109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0 37.655 180","-37.632 -180 37.655 -0.005"],"time_start":"2022-11-10T00:00:02.000Z","updated":"2022-11-14T19:55:40.532Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-10T23:59:59.000Z","id":"G2544533280-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221110-000002-e20221110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.68 + 0 37.592 180","-37.68 -180 37.592 -0.001"],"time_start":"2022-11-11T00:00:01.000Z","updated":"2022-11-15T20:08:35.887Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-11T23:59:59.000Z","id":"G2545378425-POCLOUD","original_format":"UMM_JSON","granule_size":"17.22423267364502","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221111-000001-e20221111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.772 + 0.002 37.592 180","-37.772 -180 37.592 -0.001"],"time_start":"2022-11-12T00:00:02.000Z","updated":"2022-11-17T20:11:32.967Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-12T23:59:58.000Z","id":"G2547460433-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221112-000002-e20221112-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.723 + 0.004 37.818 180","-37.723 -180 37.818 -0.002"],"time_start":"2022-11-13T00:00:02.000Z","updated":"2022-11-18T01:58:29.767Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-13T23:59:59.000Z","id":"G2547665539-POCLOUD","original_format":"UMM_JSON","granule_size":"17.203572273254395","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221113-000002-e20221113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.719 + 0.001 37.73 180","-37.719 -180 37.73 -0.001"],"time_start":"2022-11-14T00:00:02.000Z","updated":"2022-11-18T14:02:35.497Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-14T23:59:59.000Z","id":"G2548170825-POCLOUD","original_format":"UMM_JSON","granule_size":"17.03844928741455","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221114-000002-e20221114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.767 + 0.002 37.726 180","-37.767 -180 37.726 -0.002"],"time_start":"2022-11-15T00:00:02.000Z","updated":"2022-11-18T20:00:30.540Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-15T23:59:59.000Z","id":"G2548398877-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221115-000002-e20221115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.804 + 0.008 37.526 180","-37.804 -180 37.526 -0.002"],"time_start":"2022-11-16T00:00:02.000Z","updated":"2022-11-19T19:58:30.057Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-16T23:59:59.000Z","id":"G2549298917-POCLOUD","original_format":"UMM_JSON","granule_size":"15.841517448425293","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221116-000002-e20221116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.686 + 0 37.695 180","-37.686 -180 37.695 0"],"time_start":"2022-11-17T00:00:01.000Z","updated":"2022-11-20T13:59:38.587Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-17T23:59:59.000Z","id":"G2550011137-POCLOUD","original_format":"UMM_JSON","granule_size":"16.149085998535156","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221117-000001-e20221117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.749 + 0.002 37.55 180","-37.749 -180 37.55 -0.002"],"time_start":"2022-11-18T00:00:01.000Z","updated":"2022-11-21T01:59:28.834Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-18T23:59:59.000Z","id":"G2550773775-POCLOUD","original_format":"UMM_JSON","granule_size":"16.266193389892578","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221118-000001-e20221118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.607 + 0.002 37.498 180","-37.607 -180 37.498 -0.004"],"time_start":"2022-11-19T00:00:01.000Z","updated":"2022-11-23T01:52:28.782Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-19T23:59:59.000Z","id":"G2552449778-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221119-000001-e20221119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.666 + 0.001 37.572 180","-37.666 -180 37.572 0"],"time_start":"2022-11-20T00:00:01.000Z","updated":"2022-11-23T19:51:43.824Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-20T23:59:59.000Z","id":"G2553054084-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221120-000001-e20221120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.715 + 0.001 37.481 180","-37.715 -180 37.481 0"],"time_start":"2022-11-21T00:00:01.000Z","updated":"2022-11-25T13:52:32.151Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-21T23:59:58.000Z","id":"G2553821734-POCLOUD","original_format":"UMM_JSON","granule_size":"16.72307014465332","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221121-000001-e20221121-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.668 + 0.001 37.496 180","-37.668 -180 37.496 -0.001"],"time_start":"2022-11-22T00:00:01.000Z","updated":"2022-11-26T19:56:24.151Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-22T23:59:59.000Z","id":"G2554132453-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221122-000001-e20221122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.752 + 0 37.534 180","-37.752 -180 37.534 -0.001"],"time_start":"2022-11-23T00:00:01.000Z","updated":"2022-11-26T19:55:27.062Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-23T23:59:59.000Z","id":"G2554132429-POCLOUD","original_format":"UMM_JSON","granule_size":"16.85159206390381","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221123-000001-e20221123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.761 + 0.001 37.519 180","-37.761 -180 37.519 -0.002"],"time_start":"2022-11-24T00:00:01.000Z","updated":"2022-11-28T19:49:28.172Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-24T23:59:59.000Z","id":"G2555336818-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221124-000001-e20221124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.753 + 0.001 37.598 180","-37.753 -180 37.598 -0.001"],"time_start":"2022-11-25T00:00:01.000Z","updated":"2022-11-28T19:49:33.652Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-25T23:59:59.000Z","id":"G2555336877-POCLOUD","original_format":"UMM_JSON","granule_size":"16.865171432495117","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221125-000001-e20221125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0 37.69 180","-37.65 -180 37.69 -0.001"],"time_start":"2022-11-26T00:00:01.000Z","updated":"2022-12-01T19:55:35.364Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-26T23:59:59.000Z","id":"G2557322328-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221126-000001-e20221126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.595 + 0.001 37.509 180","-37.595 -180 37.509 -0.001"],"time_start":"2022-11-27T00:00:01.000Z","updated":"2022-12-06T19:47:29.074Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-27T23:59:59.000Z","id":"G2559941348-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221127-000001-e20221127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.572 + 0.002 37.331 180","-37.572 -180 37.331 0"],"time_start":"2022-11-28T00:00:01.000Z","updated":"2022-12-06T19:46:41.421Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-28T23:59:59.000Z","id":"G2559941070-POCLOUD","original_format":"UMM_JSON","granule_size":"14.740525245666504","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221128-000001-e20221128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.522 + 0 37.466 180","-37.522 -180 37.466 -0.001"],"time_start":"2022-11-29T00:00:02.000Z","updated":"2022-12-06T19:50:30.853Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-29T23:59:59.000Z","id":"G2559942430-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221129-000002-e20221129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.545 + 0.006 37.435 180","-37.545 -180 37.435 -0.001"],"time_start":"2022-11-30T00:00:02.000Z","updated":"2022-12-06T19:47:36.630Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-11-30T23:59:59.000Z","id":"G2559941374-POCLOUD","original_format":"UMM_JSON","granule_size":"15.24014663696289","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221130-000002-e20221130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.625 + 0 37.497 180","-37.625 -180 37.497 -0.004"],"time_start":"2022-12-01T00:00:01.000Z","updated":"2022-12-06T19:54:27.587Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-01T23:59:59.000Z","id":"G2559944198-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221201-000001-e20221201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.577 + 0 37.565 180","-37.577 -180 37.565 -0.003"],"time_start":"2022-12-02T00:00:01.000Z","updated":"2022-12-06T19:50:37.562Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-02T23:59:59.000Z","id":"G2559942527-POCLOUD","original_format":"UMM_JSON","granule_size":"15.196803092956543","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221202-000001-e20221202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.618 + 0 37.462 180","-37.618 -180 37.462 -0.002"],"time_start":"2022-12-03T00:00:01.000Z","updated":"2022-12-06T19:52:29.748Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-03T23:59:59.000Z","id":"G2559943679-POCLOUD","original_format":"UMM_JSON","granule_size":"15.061614990234375","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221203-000001-e20221203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.615 + 0 37.55 180","-37.615 -180 37.55 -0.005"],"time_start":"2022-12-04T00:00:01.000Z","updated":"2022-12-13T19:55:24.912Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-04T23:59:59.000Z","id":"G2564534199-POCLOUD","original_format":"UMM_JSON","granule_size":"14.441719055175781","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221204-000001-e20221204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.412 + 0.003 37.8 180","-37.412 -180 37.8 -0.001"],"time_start":"2022-12-05T00:00:01.000Z","updated":"2022-12-13T19:52:33.537Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-05T23:59:59.000Z","id":"G2564531438-POCLOUD","original_format":"UMM_JSON","granule_size":"14.008872032165527","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221205-000001-e20221205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.51 + 0.004 38.222 180","-37.51 -180 38.222 -0.002"],"time_start":"2022-12-06T00:00:01.000Z","updated":"2022-12-13T19:53:37.701Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-06T23:59:58.000Z","id":"G2564532486-POCLOUD","original_format":"UMM_JSON","granule_size":"13.60643196105957","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221206-000001-e20221206-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.485 + 0.004 40.355 180","-37.485 -180 40.355 -0.003"],"time_start":"2022-12-07T00:00:02.000Z","updated":"2022-12-16T13:43:27.282Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-07T23:59:59.000Z","id":"G2566233057-POCLOUD","original_format":"UMM_JSON","granule_size":"13.25890827178955","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221207-000002-e20221207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.468 + 0.003 38.055 180","-37.468 -180 38.055 -0.001"],"time_start":"2022-12-08T00:00:02.000Z","updated":"2022-12-16T13:45:24.801Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-08T23:59:59.000Z","id":"G2566235661-POCLOUD","original_format":"UMM_JSON","granule_size":"13.103087425231934","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221208-000002-e20221208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.393 + 0.003 39.138 180","-37.393 -180 39.138 0"],"time_start":"2022-12-09T00:00:01.000Z","updated":"2022-12-16T13:43:30.906Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-09T23:59:59.000Z","id":"G2566233146-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221209-000001-e20221209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.393 + 0.001 39.338 180","-37.393 -180 39.338 -0.002"],"time_start":"2022-12-10T00:00:01.000Z","updated":"2022-12-16T13:47:23.569Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-10T23:59:59.000Z","id":"G2566237862-POCLOUD","original_format":"UMM_JSON","granule_size":"13.43403148651123","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221210-000001-e20221210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.449 + 0.002 39.172 180","-37.449 -180 39.172 -0.002"],"time_start":"2022-12-11T00:00:00.000Z","updated":"2022-12-17T15:41:27.940Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-11T23:59:59.000Z","id":"G2566844061-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221211-000000-e20221211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.411 + 0.004 37.413 180","-37.411 -180 37.413 -0.001"],"time_start":"2022-12-13T00:00:02.000Z","updated":"2022-12-18T19:46:27.847Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-13T23:59:59.000Z","id":"G2567221711-POCLOUD","original_format":"UMM_JSON","granule_size":"13.175657272338867","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221213-000002-e20221213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.335 + 0.002 38.514 180","-37.335 -180 38.514 -0.001"],"time_start":"2022-12-14T00:00:01.000Z","updated":"2022-12-22T19:58:25.498Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-14T23:59:59.000Z","id":"G2569871505-POCLOUD","original_format":"UMM_JSON","granule_size":"13.204601287841797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221214-000001-e20221214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.311 + 0.002 39.821 180","-37.311 -180 39.821 -0.006"],"time_start":"2022-12-15T00:00:01.000Z","updated":"2022-12-22T19:58:27.618Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-15T23:59:59.000Z","id":"G2569871511-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221215-000001-e20221215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.651 + 0 37.644 180","-37.651 -180 37.644 -0.005"],"time_start":"2022-12-16T00:00:01.000Z","updated":"2022-12-23T02:00:35.869Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-16T23:59:59.000Z","id":"G2569972238-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221216-000001-e20221216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.71 + 0.003 37.551 180","-37.71 -180 37.551 -0.006"],"time_start":"2022-12-17T00:00:01.000Z","updated":"2022-12-21T19:56:26.454Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-17T23:59:59.000Z","id":"G2569025320-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221217-000001-e20221217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0.002 37.708 180","-37.603 -180 37.708 -0.002"],"time_start":"2022-12-18T00:00:02.000Z","updated":"2022-12-22T19:58:26.292Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-18T23:59:59.000Z","id":"G2569871507-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221218-000002-e20221218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.57 + 0.001 37.691 180","-37.57 -180 37.691 0"],"time_start":"2022-12-19T00:00:02.000Z","updated":"2022-12-22T20:01:28.901Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-19T23:59:59.000Z","id":"G2569872361-POCLOUD","original_format":"UMM_JSON","granule_size":"13.79401683807373","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221219-000002-e20221219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.621 + 0 38.288 180","-37.621 -180 38.288 -0.001"],"time_start":"2022-12-20T00:00:02.000Z","updated":"2022-12-24T01:59:33.486Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-20T23:59:59.000Z","id":"G2570552881-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221220-000002-e20221220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.588 + 0.001 38.317 180","-37.588 -180 38.317 0"],"time_start":"2022-12-21T00:00:01.000Z","updated":"2022-12-25T19:55:27.450Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-21T23:59:59.000Z","id":"G2571843465-POCLOUD","original_format":"UMM_JSON","granule_size":"14.146600723266602","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221221-000001-e20221221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.646 + 0.001 37.639 180","-37.646 -180 37.639 -0.004"],"time_start":"2022-12-22T00:00:02.000Z","updated":"2022-12-26T02:18:39.265Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-22T23:59:58.000Z","id":"G2572018011-POCLOUD","original_format":"UMM_JSON","granule_size":"14.72298812866211","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221222-000002-e20221222-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.559 + 0.005 37.65 180","-37.559 -180 37.65 -0.002"],"time_start":"2022-12-23T00:00:01.000Z","updated":"2022-12-26T02:18:30.103Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-23T23:59:59.000Z","id":"G2572017904-POCLOUD","original_format":"UMM_JSON","granule_size":"14.947432518005371","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221223-000001-e20221223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.691 + 0.003 37.634 180","-37.691 -180 37.634 -0.003"],"time_start":"2022-12-24T00:00:02.000Z","updated":"2022-12-28T13:56:19.620Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-24T23:59:59.000Z","id":"G2573945446-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221224-000002-e20221224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.752 + 0.004 37.453 180","-37.752 -180 37.453 -0.004"],"time_start":"2022-12-25T00:00:02.000Z","updated":"2022-12-28T19:51:35.563Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-25T23:59:59.000Z","id":"G2574099439-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221225-000002-e20221225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0.001 37.532 180","-37.777 -180 37.532 -0.001"],"time_start":"2022-12-26T00:00:01.000Z","updated":"2022-12-29T19:50:33.367Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-26T23:59:59.000Z","id":"G2574853601-POCLOUD","original_format":"UMM_JSON","granule_size":"14.786300659179688","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221226-000001-e20221226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.73 + 0.003 37.748 180","-37.73 -180 37.748 0"],"time_start":"2022-12-27T00:00:01.000Z","updated":"2023-01-05T02:23:31.409Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-27T23:59:59.000Z","id":"G2577583970-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221227-000001-e20221227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.838 + 0.001 37.72 180","-37.838 -180 37.72 -0.004"],"time_start":"2022-12-28T00:00:01.000Z","updated":"2023-01-05T02:23:30.487Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-28T23:59:59.000Z","id":"G2577583961-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221228-000001-e20221228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.793 + 0.002 37.642 180","-37.793 -180 37.642 0"],"time_start":"2022-12-29T00:00:01.000Z","updated":"2023-01-05T02:25:26.848Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-29T23:59:58.000Z","id":"G2577584886-POCLOUD","original_format":"UMM_JSON","granule_size":"15.033379554748535","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221229-000001-e20221229-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.797 + 0.002 37.614 180","-37.797 -180 37.614 -0.002"],"time_start":"2022-12-30T00:00:01.000Z","updated":"2023-01-05T02:27:30.154Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-30T23:59:59.000Z","id":"G2577585364-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221230-000001-e20221230-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0 37.575 180","-37.777 -180 37.575 -0.002"],"time_start":"2022-12-31T00:00:01.000Z","updated":"2023-01-05T07:57:27.143Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2022-12-31T23:59:59.000Z","id":"G2577716910-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20221231-000001-e20221231-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.764 + 0 37.637 180","-37.764 -180 37.637 -0.002"],"time_start":"2023-01-01T00:00:01.000Z","updated":"2023-01-06T13:53:39.696Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-01T23:59:59.000Z","id":"G2579877877-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230101-000001-e20230101-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.726 + 0.001 37.574 180","-37.726 -180 37.574 0"],"time_start":"2023-01-02T00:00:02.000Z","updated":"2023-01-05T19:51:28.164Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-02T23:59:59.000Z","id":"G2578387748-POCLOUD","original_format":"UMM_JSON","granule_size":"14.816234588623047","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230102-000002-e20230102-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.751 + 0 37.663 180","-37.751 -180 37.663 -0.003"],"time_start":"2023-01-03T00:00:01.000Z","updated":"2023-01-06T19:57:30.276Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-03T23:59:59.000Z","id":"G2580354807-POCLOUD","original_format":"UMM_JSON","granule_size":"14.50080394744873","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230103-000001-e20230103-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.735 + 0 37.61 180","-37.735 -180 37.61 0"],"time_start":"2023-01-04T00:00:02.000Z","updated":"2023-01-07T13:52:23.110Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-04T23:59:59.000Z","id":"G2581862282-POCLOUD","original_format":"UMM_JSON","granule_size":"14.299064636230469","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230104-000002-e20230104-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.742 + 0 37.516 180","-37.742 -180 37.516 -0.001"],"time_start":"2023-01-05T00:00:01.000Z","updated":"2023-01-07T19:53:27.980Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-05T23:59:59.000Z","id":"G2582359785-POCLOUD","original_format":"UMM_JSON","granule_size":"13.948528289794922","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230105-000001-e20230105-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.775 + 0.005 37.516 180","-37.775 -180 37.516 -0.003"],"time_start":"2023-01-06T00:00:02.000Z","updated":"2023-01-11T19:48:31.585Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-06T23:59:59.000Z","id":"G2586765334-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230106-000002-e20230106-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.755 + 0.001 37.578 180","-37.755 -180 37.578 -0.002"],"time_start":"2023-01-07T00:00:01.000Z","updated":"2023-01-11T19:51:28.386Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-07T23:59:58.000Z","id":"G2586767113-POCLOUD","original_format":"UMM_JSON","granule_size":"14.54161548614502","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230107-000001-e20230107-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.758 + 0.001 37.52 180","-37.758 -180 37.52 -0.002"],"time_start":"2023-01-08T00:00:02.000Z","updated":"2023-01-17T07:44:28.853Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-08T23:59:59.000Z","id":"G2590816300-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230108-000002-e20230108-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.777 + 0.001 37.59 180","-37.777 -180 37.59 -0.005"],"time_start":"2023-01-09T00:00:02.000Z","updated":"2023-01-17T07:45:31.263Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-09T23:59:59.000Z","id":"G2590816919-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230109-000002-e20230109-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.766 + 0 37.793 180","-37.766 -180 37.793 -0.001"],"time_start":"2023-01-10T00:00:01.000Z","updated":"2023-01-13T19:46:06.398Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-10T23:59:59.000Z","id":"G2588309935-POCLOUD","original_format":"UMM_JSON","granule_size":"14.352486610412598","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230110-000001-e20230110-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.741 + 0.002 37.773 180","-37.741 -180 37.773 -0.004"],"time_start":"2023-01-11T00:00:01.000Z","updated":"2023-01-14T20:01:22.551Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-11T23:59:59.000Z","id":"G2589032672-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230111-000001-e20230111-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.736 + 0.002 37.701 180","-37.736 -180 37.701 -0.003"],"time_start":"2023-01-12T00:00:02.000Z","updated":"2023-01-16T01:53:25.408Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-12T23:59:59.000Z","id":"G2589885870-POCLOUD","original_format":"UMM_JSON","granule_size":"14.108214378356934","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230112-000002-e20230112-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.672 + 0 37.598 180","-37.672 -180 37.598 -0.004"],"time_start":"2023-01-13T00:00:01.000Z","updated":"2023-01-17T19:44:29.159Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-13T23:59:59.000Z","id":"G2591242651-POCLOUD","original_format":"UMM_JSON","granule_size":"13.958268165588379","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230113-000001-e20230113-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.003 37.789 180","-37.669 -180 37.789 -0.003"],"time_start":"2023-01-14T00:00:02.000Z","updated":"2023-01-24T20:09:28.618Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-14T23:59:59.000Z","id":"G2595695982-POCLOUD","original_format":"UMM_JSON","granule_size":"14.11125659942627","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230114-000002-e20230114-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.626 + 0 37.659 180","-37.626 -180 37.659 -0.007"],"time_start":"2023-01-15T00:00:01.000Z","updated":"2023-01-21T03:34:28.317Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-15T23:59:59.000Z","id":"G2593715060-POCLOUD","original_format":"UMM_JSON","granule_size":"14.16899299621582","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230115-000001-e20230115-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.58 + 0.001 37.6 180","-37.58 -180 37.6 0"],"time_start":"2023-01-16T00:00:01.000Z","updated":"2023-01-21T03:34:29.160Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-16T23:59:59.000Z","id":"G2593715064-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230116-000001-e20230116-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.583 + 0.004 37.507 180","-37.583 -180 37.507 -0.002"],"time_start":"2023-01-17T00:00:02.000Z","updated":"2023-01-24T01:56:27.379Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-17T23:59:59.000Z","id":"G2595243422-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230117-000002-e20230117-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.643 + 0.001 37.606 180","-37.643 -180 37.606 -0.002"],"time_start":"2023-01-18T00:00:02.000Z","updated":"2023-01-24T01:56:27.598Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-18T23:59:59.000Z","id":"G2595243424-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230118-000002-e20230118-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.614 + 0.001 37.615 180","-37.614 -180 37.615 -0.001"],"time_start":"2023-01-19T00:00:01.000Z","updated":"2023-01-24T20:09:28.298Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-19T23:59:59.000Z","id":"G2595695978-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230119-000001-e20230119-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.699 + 0 37.659 180","-37.699 -180 37.659 -0.001"],"time_start":"2023-01-20T00:00:02.000Z","updated":"2023-01-24T20:09:33.235Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-20T23:59:59.000Z","id":"G2595696033-POCLOUD","original_format":"UMM_JSON","granule_size":"14.492716789245605","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230120-000002-e20230120-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.682 + 0.001 37.537 180","-37.682 -180 37.537 0"],"time_start":"2023-01-21T00:00:02.000Z","updated":"2023-01-26T02:00:29.240Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-21T23:59:59.000Z","id":"G2596399217-POCLOUD","original_format":"UMM_JSON","granule_size":"13.783089637756348","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230121-000002-e20230121-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.628 + 0.002 37.593 180","-37.628 -180 37.593 0"],"time_start":"2023-01-22T00:00:01.000Z","updated":"2023-01-27T13:50:26.392Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-22T23:59:59.000Z","id":"G2597487597-POCLOUD","original_format":"UMM_JSON","granule_size":"14.291604995727539","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230122-000001-e20230122-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.545 + 0.002 37.515 180","-37.545 -180 37.515 -0.002"],"time_start":"2023-01-23T00:00:01.000Z","updated":"2023-01-30T02:11:32.418Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-23T23:59:59.000Z","id":"G2599140824-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230123-000001-e20230123-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.484 + 0.003 37.333 180","-37.484 -180 37.333 -0.003"],"time_start":"2023-01-24T00:00:01.000Z","updated":"2023-01-31T02:13:30.478Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-24T23:59:59.000Z","id":"G2599914298-POCLOUD","original_format":"UMM_JSON","granule_size":"12.324508666992188","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230124-000001-e20230124-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.344 + 0 38.164 180","-37.344 -180 38.164 -0.006"],"time_start":"2023-01-25T00:00:01.000Z","updated":"2023-01-30T02:11:27.177Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-25T23:59:59.000Z","id":"G2599140751-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230125-000001-e20230125-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.437 + 0 37.505 180","-37.437 -180 37.505 -0.001"],"time_start":"2023-01-26T00:00:01.000Z","updated":"2023-01-31T20:01:33.023Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-26T23:59:59.000Z","id":"G2600353651-POCLOUD","original_format":"UMM_JSON","granule_size":"11.543647766113281","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230126-000001-e20230126-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.423 + 0.003 37.579 180","-37.423 -180 37.579 -0.001"],"time_start":"2023-01-27T00:00:02.000Z","updated":"2023-01-31T02:14:24.197Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-27T23:59:59.000Z","id":"G2599914716-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230127-000002-e20230127-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.459 + 0.001 37.856 180","-37.459 -180 37.856 -0.003"],"time_start":"2023-01-28T00:00:01.000Z","updated":"2023-01-31T20:01:32.268Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-28T23:59:59.000Z","id":"G2600353654-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230128-000001-e20230128-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.446 + 0.001 39.419 180","-37.446 -180 39.419 -0.003"],"time_start":"2023-01-29T00:00:02.000Z","updated":"2023-01-31T20:04:27.462Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-29T23:59:59.000Z","id":"G2600354555-POCLOUD","original_format":"UMM_JSON","granule_size":"12.219965934753418","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230129-000002-e20230129-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.465 + 0.009 39.186 180","-37.465 -180 39.186 -0.002"],"time_start":"2023-01-30T00:00:02.000Z","updated":"2023-02-03T02:01:25.539Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-30T23:59:59.000Z","id":"G2601606706-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230130-000002-e20230130-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.34 + 0 38.767 180","-37.34 -180 38.767 -0.001"],"time_start":"2023-01-31T00:00:01.000Z","updated":"2023-02-03T02:02:20.729Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-01-31T23:59:59.000Z","id":"G2601607163-POCLOUD","original_format":"UMM_JSON","granule_size":"11.870659828186035","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230131-000001-e20230131-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.285 + 0.002 38.758 180","-37.285 -180 38.758 -0.002"],"time_start":"2023-02-01T00:00:01.000Z","updated":"2023-02-03T19:47:28.498Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-01T23:59:59.000Z","id":"G2601891268-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230201-000001-e20230201-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.508 + 0 37.708 180","-37.508 -180 37.708 -0.001"],"time_start":"2023-02-02T00:00:00.000Z","updated":"2023-02-06T01:58:25.605Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-02T23:59:59.000Z","id":"G2603145705-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230202-000000-e20230202-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.559 + 0 38.659 180","-37.559 -180 38.659 0"],"time_start":"2023-02-03T00:00:01.000Z","updated":"2023-02-05T19:53:26.545Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-03T23:59:59.000Z","id":"G2603053537-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230203-000001-e20230203-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.563 + 0.004 40.267 180","-37.563 -180 40.267 -0.002"],"time_start":"2023-02-04T00:00:01.000Z","updated":"2023-02-07T20:11:24.724Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-04T23:59:59.000Z","id":"G2604161920-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230204-000001-e20230204-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.52 + 0.002 37.471 180","-37.52 -180 37.471 -0.002"],"time_start":"2023-02-05T00:00:02.000Z","updated":"2023-02-08T14:09:22.694Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-05T23:59:59.000Z","id":"G2604865867-POCLOUD","original_format":"UMM_JSON","granule_size":"1.1920928955078125E-4","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"Download + cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc.md5"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230205-000002-e20230205-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.502 + 0.003 37.505 180","-37.502 -180 37.505 -0.001"],"time_start":"2023-02-06T00:00:02.000Z","updated":"2023-02-09T02:01:44.946Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-06T23:59:59.000Z","id":"G2605291648-POCLOUD","original_format":"UMM_JSON","granule_size":"13.158476829528809","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230206-000002-e20230206-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.6 + 0 37.38 180","-37.6 -180 37.38 -0.001"],"time_start":"2023-02-07T00:00:02.000Z","updated":"2023-02-10T19:56:42.454Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-07T23:59:59.000Z","id":"G2607053457-POCLOUD","original_format":"UMM_JSON","granule_size":"13.895798683166504","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230207-000002-e20230207-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.486 + 0.006 37.341 180","-37.486 -180 37.341 -0.002"],"time_start":"2023-02-08T00:00:01.000Z","updated":"2023-02-11T02:25:47.105Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-08T23:59:59.000Z","id":"G2607382637-POCLOUD","original_format":"UMM_JSON","granule_size":"14.361655235290527","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230208-000001-e20230208-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.539 + 0.002 37.371 180","-37.539 -180 37.371 0"],"time_start":"2023-02-09T00:00:02.000Z","updated":"2023-02-11T08:19:25.803Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-09T23:59:59.000Z","id":"G2607655350-POCLOUD","original_format":"UMM_JSON","granule_size":"14.197410583496094","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230209-000002-e20230209-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.5 + 0 37.316 180","-37.5 -180 37.316 -0.004"],"time_start":"2023-02-10T00:00:02.000Z","updated":"2023-02-14T02:27:44.377Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-10T23:59:59.000Z","id":"G2610289901-POCLOUD","original_format":"UMM_JSON","granule_size":"14.175999641418457","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230210-000002-e20230210-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.533 + 0.001 37.485 180","-37.533 -180 37.485 -0.001"],"time_start":"2023-02-11T00:00:02.000Z","updated":"2023-02-18T02:30:42.144Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-11T23:59:59.000Z","id":"G2613681923-POCLOUD","original_format":"UMM_JSON","granule_size":"13.051389694213867","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230211-000002-e20230211-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.596 + 0.002 37.451 180","-37.596 -180 37.451 -0.001"],"time_start":"2023-02-12T00:00:01.000Z","updated":"2023-02-22T19:40:39.147Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-12T23:59:59.000Z","id":"G2617926812-POCLOUD","original_format":"UMM_JSON","granule_size":"11.868195533752441","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230212-000001-e20230212-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.683 + 0.002 37.479 180","-37.683 -180 37.479 -0.003"],"time_start":"2023-02-13T00:00:02.000Z","updated":"2023-02-22T19:44:22.711Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230213-000002-e20230213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-13T23:59:59.000Z","id":"G2617927720-POCLOUD","original_format":"UMM_JSON","granule_size":"11.82916259765625","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230213-000002-e20230213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230213-000002-e20230213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230213-000002-e20230213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230213-000002-e20230213-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.747 + 0.006 37.492 180","-37.747 -180 37.492 0"],"time_start":"2023-02-14T00:00:02.000Z","updated":"2023-02-22T19:40:40.339Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-14T23:59:59.000Z","id":"G2617926816-POCLOUD","original_format":"UMM_JSON","granule_size":"11.560159683227539","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230214-000002-e20230214-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.68 + 0.002 37.637 180","-37.68 -180 37.637 -0.007"],"time_start":"2023-02-15T00:00:02.000Z","updated":"2023-02-19T02:06:42.817Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-15T23:59:59.000Z","id":"G2614670639-POCLOUD","original_format":"UMM_JSON","granule_size":"11.603643417358398","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230215-000002-e20230215-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.734 + 0.001 37.557 180","-37.734 -180 37.557 -0.003"],"time_start":"2023-02-16T00:00:01.000Z","updated":"2023-02-21T02:05:16.965Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-16T23:59:59.000Z","id":"G2616527164-POCLOUD","original_format":"UMM_JSON","granule_size":"13.14251708984375","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230216-000001-e20230216-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.67 + 0.002 37.559 180","-37.67 -180 37.559 -0.008"],"time_start":"2023-02-17T00:00:01.000Z","updated":"2023-02-23T07:49:46.844Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-17T23:59:59.000Z","id":"G2618215938-POCLOUD","original_format":"UMM_JSON","granule_size":"12.513076782226562","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230217-000001-e20230217-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.72 + 0.004 37.476 180","-37.72 -180 37.476 -0.001"],"time_start":"2023-02-18T00:00:01.000Z","updated":"2023-02-24T01:58:41.925Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-18T23:59:59.000Z","id":"G2618841690-POCLOUD","original_format":"UMM_JSON","granule_size":"12.774614334106445","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230218-000001-e20230218-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.671 + 0.002 37.439 180","-37.671 -180 37.439 -0.003"],"time_start":"2023-02-19T00:00:01.000Z","updated":"2023-02-24T01:58:37.977Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-19T23:59:59.000Z","id":"G2618841605-POCLOUD","original_format":"UMM_JSON","granule_size":"12.688216209411621","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230219-000001-e20230219-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.63 + 0.002 37.542 180","-37.63 -180 37.542 -0.006"],"time_start":"2023-02-20T00:00:01.000Z","updated":"2023-02-25T02:24:39.294Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-20T23:59:59.000Z","id":"G2619643120-POCLOUD","original_format":"UMM_JSON","granule_size":"12.376195907592773","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230220-000001-e20230220-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.654 + 0.002 37.585 180","-37.654 -180 37.585 0"],"time_start":"2023-02-21T00:00:02.000Z","updated":"2023-02-27T02:13:08.574Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230221-000002-e20230221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-21T23:59:59.000Z","id":"G2621228304-POCLOUD","original_format":"UMM_JSON","granule_size":"12.327773094177246","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230221-000002-e20230221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230221-000002-e20230221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230221-000002-e20230221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230221-000002-e20230221-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.676 + 0.001 37.803 180","-37.676 -180 37.803 0"],"time_start":"2023-02-22T00:00:02.000Z","updated":"2023-02-27T02:12:46.144Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-22T23:59:59.000Z","id":"G2621228096-POCLOUD","original_format":"UMM_JSON","granule_size":"12.307965278625488","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230222-000002-e20230222-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.801 + 0.001 37.813 180","-37.801 -180 37.813 -0.003"],"time_start":"2023-02-23T00:00:02.000Z","updated":"2023-02-27T02:12:44.050Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-23T23:59:59.000Z","id":"G2621228080-POCLOUD","original_format":"UMM_JSON","granule_size":"12.645120620727539","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230223-000002-e20230223-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.738 + 0.002 37.775 180","-37.738 -180 37.775 -0.001"],"time_start":"2023-02-24T00:00:01.000Z","updated":"2023-02-28T19:55:41.487Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-24T23:59:59.000Z","id":"G2622882902-POCLOUD","original_format":"UMM_JSON","granule_size":"13.098541259765625","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230224-000001-e20230224-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.8 + 0.001 37.725 180","-37.8 -180 37.725 0"],"time_start":"2023-02-25T00:00:01.000Z","updated":"2023-03-02T20:05:19.326Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-25T23:59:59.000Z","id":"G2624543799-POCLOUD","original_format":"UMM_JSON","granule_size":"13.807819366455078","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230225-000001-e20230225-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.656 + 0.001 37.64 180","-37.656 -180 37.64 -0.001"],"time_start":"2023-02-26T00:00:02.000Z","updated":"2023-03-01T01:59:45.675Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-26T23:59:59.000Z","id":"G2623190781-POCLOUD","original_format":"UMM_JSON","granule_size":"14.489068031311035","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230226-000002-e20230226-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.619 + 0.004 37.72 180","-37.619 -180 37.72 -0.001"],"time_start":"2023-02-27T00:00:02.000Z","updated":"2023-03-14T07:55:49.973Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-27T23:59:59.000Z","id":"G2632269143-POCLOUD","original_format":"UMM_JSON","granule_size":"14.425004959106445","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230227-000002-e20230227-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.687 + 0.005 37.696 180","-37.687 -180 37.696 -0.001"],"time_start":"2023-02-28T00:00:02.000Z","updated":"2023-04-06T22:34:23.079Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-02-28T23:59:59.000Z","id":"G2649484937-POCLOUD","original_format":"UMM_JSON","granule_size":"14.018229484558105","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230228-000002-e20230228-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.62 + 0.001 37.643 180","-37.62 -180 37.643 0"],"time_start":"2023-03-01T00:00:02.000Z","updated":"2023-04-06T22:34:49.917Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-01T23:59:59.000Z","id":"G2649485147-POCLOUD","original_format":"UMM_JSON","granule_size":"14.144281387329102","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230301-000002-e20230301-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.609 + 0 37.695 180","-37.609 -180 37.695 -0.001"],"time_start":"2023-03-02T00:00:02.000Z","updated":"2023-04-06T22:34:03.683Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-02T23:59:59.000Z","id":"G2649484787-POCLOUD","original_format":"UMM_JSON","granule_size":"13.891814231872559","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230302-000002-e20230302-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.626 + 0.001 37.58 180","-37.626 -180 37.58 0"],"time_start":"2023-03-03T00:00:01.000Z","updated":"2023-04-06T22:34:07.182Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-03T23:59:59.000Z","id":"G2649484774-POCLOUD","original_format":"UMM_JSON","granule_size":"13.82174301147461","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230303-000001-e20230303-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.588 + 0 37.683 180","-37.588 -180 37.683 -0.001"],"time_start":"2023-03-04T00:00:01.000Z","updated":"2023-04-06T22:34:50.765Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-04T23:59:59.000Z","id":"G2649485154-POCLOUD","original_format":"UMM_JSON","granule_size":"13.636422157287598","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230304-000001-e20230304-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0 37.585 180","-37.658 -180 37.585 -0.001"],"time_start":"2023-03-05T00:00:01.000Z","updated":"2023-04-06T22:34:43.890Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-05T23:59:59.000Z","id":"G2649485111-POCLOUD","original_format":"UMM_JSON","granule_size":"12.853346824645996","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230305-000001-e20230305-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0.006 37.625 180","-37.623 -180 37.625 -0.001"],"time_start":"2023-03-06T00:00:02.000Z","updated":"2023-04-11T19:42:31.413Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-06T23:59:59.000Z","id":"G2653720313-POCLOUD","original_format":"UMM_JSON","granule_size":"11.747031211853027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230306-000002-e20230306-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.668 + 0 37.624 180","-37.668 -180 37.624 -0.004"],"time_start":"2023-03-07T00:00:01.000Z","updated":"2023-04-11T19:42:31.839Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-07T23:59:59.000Z","id":"G2653720323-POCLOUD","original_format":"UMM_JSON","granule_size":"11.808615684509277","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230307-000001-e20230307-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.642 + 0.001 37.677 180","-37.642 -180 37.677 -0.002"],"time_start":"2023-03-08T00:00:01.000Z","updated":"2023-04-06T22:34:41.707Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-08T23:59:58.000Z","id":"G2649485102-POCLOUD","original_format":"UMM_JSON","granule_size":"12.165250778198242","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230308-000001-e20230308-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.672 + 0.004 37.678 180","-37.672 -180 37.678 -0.002"],"time_start":"2023-03-09T00:00:02.000Z","updated":"2023-04-06T22:34:54.873Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-09T23:59:59.000Z","id":"G2649485178-POCLOUD","original_format":"UMM_JSON","granule_size":"13.315463066101074","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230309-000002-e20230309-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.694 + 0.001 37.813 180","-37.694 -180 37.813 -0.001"],"time_start":"2023-03-10T00:00:01.000Z","updated":"2023-04-06T22:34:49.341Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-10T23:59:59.000Z","id":"G2649485141-POCLOUD","original_format":"UMM_JSON","granule_size":"12.460429191589355","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230310-000001-e20230310-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.75 + 0 37.684 180","-37.75 -180 37.684 -0.001"],"time_start":"2023-03-11T00:00:01.000Z","updated":"2023-04-06T22:34:47.706Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-11T23:59:59.000Z","id":"G2649485136-POCLOUD","original_format":"UMM_JSON","granule_size":"12.241259574890137","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230311-000001-e20230311-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.687 + 0.006 37.746 180","-37.687 -180 37.746 -0.002"],"time_start":"2023-03-12T00:00:01.000Z","updated":"2023-04-06T22:34:35.801Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-12T23:59:59.000Z","id":"G2649485030-POCLOUD","original_format":"UMM_JSON","granule_size":"11.753541946411133","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230312-000001-e20230312-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.576 + 0.002 37.624 180","-37.576 -180 37.624 -0.002"],"time_start":"2023-03-13T00:00:01.000Z","updated":"2023-04-06T22:34:54.148Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-13T23:59:59.000Z","id":"G2649485176-POCLOUD","original_format":"UMM_JSON","granule_size":"11.653200149536133","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230313-000001-e20230313-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.587 + 0.001 37.476 180","-37.587 -180 37.476 -0.006"],"time_start":"2023-03-14T00:00:01.000Z","updated":"2023-04-06T22:34:52.468Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-14T23:59:59.000Z","id":"G2649485165-POCLOUD","original_format":"UMM_JSON","granule_size":"11.485281944274902","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230314-000001-e20230314-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.608 + 0.004 37.554 180","-37.608 -180 37.554 -0.005"],"time_start":"2023-03-15T00:00:01.000Z","updated":"2023-04-06T22:34:38.909Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-15T23:59:59.000Z","id":"G2649485061-POCLOUD","original_format":"UMM_JSON","granule_size":"11.4343843460083","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230315-000001-e20230315-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.609 + 0.001 37.39 180","-37.609 -180 37.39 -0.001"],"time_start":"2023-03-16T00:00:02.000Z","updated":"2023-04-06T22:34:27.049Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-16T23:59:59.000Z","id":"G2649484956-POCLOUD","original_format":"UMM_JSON","granule_size":"11.331893920898438","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230316-000002-e20230316-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.658 + 0.001 37.54 180","-37.658 -180 37.54 0"],"time_start":"2023-03-17T00:00:01.000Z","updated":"2023-04-06T22:34:45.394Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-17T23:59:59.000Z","id":"G2649485124-POCLOUD","original_format":"UMM_JSON","granule_size":"11.355985641479492","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230317-000001-e20230317-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0.003 37.585 180","-37.669 -180 37.585 -0.005"],"time_start":"2023-03-18T00:00:01.000Z","updated":"2023-04-06T22:34:43.113Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-18T23:59:59.000Z","id":"G2649485110-POCLOUD","original_format":"UMM_JSON","granule_size":"11.462980270385742","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230318-000001-e20230318-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.662 + 0.001 37.528 180","-37.662 -180 37.528 0"],"time_start":"2023-03-19T00:00:02.000Z","updated":"2023-04-06T22:34:38.734Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-19T23:59:59.000Z","id":"G2649485067-POCLOUD","original_format":"UMM_JSON","granule_size":"13.996682167053223","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230319-000002-e20230319-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.644 + 0.002 37.55 180","-37.644 -180 37.55 -0.002"],"time_start":"2023-03-20T00:00:01.000Z","updated":"2023-04-06T22:34:49.715Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-20T23:59:59.000Z","id":"G2649485149-POCLOUD","original_format":"UMM_JSON","granule_size":"13.831528663635254","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230320-000001-e20230320-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.579 + 0.004 37.56 180","-37.579 -180 37.56 -0.002"],"time_start":"2023-03-21T00:00:01.000Z","updated":"2023-04-06T22:34:15.538Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-21T23:59:59.000Z","id":"G2649484848-POCLOUD","original_format":"UMM_JSON","granule_size":"13.631184577941895","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230321-000001-e20230321-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.685 + 0 37.655 180","-37.685 -180 37.655 -0.001"],"time_start":"2023-03-22T00:00:02.000Z","updated":"2023-04-06T22:34:33.858Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-22T23:59:59.000Z","id":"G2649485004-POCLOUD","original_format":"UMM_JSON","granule_size":"13.733543395996094","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230322-000002-e20230322-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.542 + 0.005 37.454 180","-37.542 -180 37.454 0"],"time_start":"2023-03-23T00:00:01.000Z","updated":"2023-04-06T22:34:28.388Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-23T23:59:59.000Z","id":"G2649484965-POCLOUD","original_format":"UMM_JSON","granule_size":"13.657353401184082","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230323-000001-e20230323-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.484 + 0.002 37.459 180","-37.484 -180 37.459 -0.002"],"time_start":"2023-03-24T00:00:02.000Z","updated":"2023-04-06T22:34:11.164Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-24T23:59:59.000Z","id":"G2649484800-POCLOUD","original_format":"UMM_JSON","granule_size":"14.000606536865234","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230324-000002-e20230324-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.45 + 0.002 37.473 180","-37.45 -180 37.473 -0.005"],"time_start":"2023-03-25T00:00:01.000Z","updated":"2023-04-06T22:34:51.168Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-25T23:59:59.000Z","id":"G2649485156-POCLOUD","original_format":"UMM_JSON","granule_size":"14.156731605529785","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230325-000001-e20230325-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.505 + 0.003 37.494 180","-37.505 -180 37.494 -0.001"],"time_start":"2023-03-26T00:00:02.000Z","updated":"2023-04-06T22:34:48.063Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-26T23:59:59.000Z","id":"G2649485137-POCLOUD","original_format":"UMM_JSON","granule_size":"14.343973159790039","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230326-000002-e20230326-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.578 + 0 37.531 180","-37.578 -180 37.531 -0.003"],"time_start":"2023-03-27T00:00:01.000Z","updated":"2023-04-06T22:34:39.440Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-27T23:59:59.000Z","id":"G2649485078-POCLOUD","original_format":"UMM_JSON","granule_size":"14.450249671936035","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230327-000001-e20230327-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.603 + 0.001 37.55 180","-37.603 -180 37.55 -0.001"],"time_start":"2023-03-28T00:00:01.000Z","updated":"2023-04-06T22:34:56.557Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-28T23:59:59.000Z","id":"G2649485184-POCLOUD","original_format":"UMM_JSON","granule_size":"14.362507820129395","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230328-000001-e20230328-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.575 + 0.004 37.481 180","-37.575 -180 37.481 -0.001"],"time_start":"2023-03-29T00:00:01.000Z","updated":"2023-04-06T22:34:36.956Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-29T23:59:59.000Z","id":"G2649485039-POCLOUD","original_format":"UMM_JSON","granule_size":"12.334750175476074","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230329-000001-e20230329-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.408 + 0.003 37.394 180","-37.408 -180 37.394 -0.001"],"time_start":"2023-03-30T00:00:02.000Z","updated":"2023-04-06T22:34:37.721Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-30T23:59:59.000Z","id":"G2649485046-POCLOUD","original_format":"UMM_JSON","granule_size":"13.092389106750488","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230330-000002-e20230330-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.517 + 0 37.543 180","-37.517 -180 37.543 -0.001"],"time_start":"2023-03-31T00:00:02.000Z","updated":"2023-04-06T22:34:45.186Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-03-31T23:59:59.000Z","id":"G2649485121-POCLOUD","original_format":"UMM_JSON","granule_size":"13.966415405273438","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230331-000002-e20230331-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.562 + 0.001 37.426 180","-37.562 -180 37.426 -0.001"],"time_start":"2023-04-01T00:00:01.000Z","updated":"2023-04-06T22:34:23.938Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-01T23:59:59.000Z","id":"G2649484940-POCLOUD","original_format":"UMM_JSON","granule_size":"14.236810684204102","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230401-000001-e20230401-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.454 + 0.004 37.564 180","-37.454 -180 37.564 -0.005"],"time_start":"2023-04-02T00:00:02.000Z","updated":"2023-04-06T22:34:45.111Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-02T23:59:59.000Z","id":"G2649485122-POCLOUD","original_format":"UMM_JSON","granule_size":"14.005633354187012","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230402-000002-e20230402-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.537 + 0.004 37.553 180","-37.537 -180 37.553 -0.004"],"time_start":"2023-04-03T00:00:01.000Z","updated":"2023-04-06T22:34:30.037Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-03T23:59:59.000Z","id":"G2649484970-POCLOUD","original_format":"UMM_JSON","granule_size":"13.848013877868652","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230403-000001-e20230403-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.58 + 0 37.255 180","-37.58 -180 37.255 -0.005"],"time_start":"2023-04-04T00:00:02.000Z","updated":"2023-04-07T19:47:30.301Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-04T23:59:59.000Z","id":"G2650215261-POCLOUD","original_format":"UMM_JSON","granule_size":"14.17752742767334","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230404-000002-e20230404-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.495 + 0.001 37.533 180","-37.495 -180 37.533 -0.003"],"time_start":"2023-04-05T00:00:01.000Z","updated":"2023-04-07T19:47:30.548Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-05T23:59:59.000Z","id":"G2650215266-POCLOUD","original_format":"UMM_JSON","granule_size":"14.112767219543457","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230405-000001-e20230405-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.431 + 0.003 37.474 180","-37.431 -180 37.474 -0.003"],"time_start":"2023-04-06T00:00:02.000Z","updated":"2023-04-09T13:57:28.605Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-06T23:59:59.000Z","id":"G2651727581-POCLOUD","original_format":"UMM_JSON","granule_size":"13.919401168823242","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230406-000002-e20230406-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.413 + 0 37.436 180","-37.413 -180 37.436 -0.001"],"time_start":"2023-04-07T00:00:01.000Z","updated":"2023-04-10T19:49:31.591Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-07T23:59:59.000Z","id":"G2652704978-POCLOUD","original_format":"UMM_JSON","granule_size":"14.241947174072266","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230407-000001-e20230407-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.49 + 0.003 37.329 180","-37.49 -180 37.329 -0.001"],"time_start":"2023-04-08T00:00:01.000Z","updated":"2023-04-13T19:48:30.082Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-08T23:59:59.000Z","id":"G2655300967-POCLOUD","original_format":"UMM_JSON","granule_size":"14.249460220336914","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230408-000001-e20230408-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.339 + 0.003 37.42 180","-37.339 -180 37.42 -0.001"],"time_start":"2023-04-09T00:00:01.000Z","updated":"2023-04-25T19:44:34.747Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-09T23:59:59.000Z","id":"G2666976846-POCLOUD","original_format":"UMM_JSON","granule_size":"14.096031188964844","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230409-000001-e20230409-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.488 + 0.002 37.409 180","-37.488 -180 37.409 -0.001"],"time_start":"2023-04-10T00:00:01.000Z","updated":"2023-04-15T01:54:27.715Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-10T23:59:59.000Z","id":"G2656331398-POCLOUD","original_format":"UMM_JSON","granule_size":"13.909557342529297","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230410-000001-e20230410-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.464 + 0.003 37.42 180","-37.464 -180 37.42 -0.001"],"time_start":"2023-04-11T00:00:01.000Z","updated":"2023-04-17T01:48:29.022Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-11T23:59:59.000Z","id":"G2657851275-POCLOUD","original_format":"UMM_JSON","granule_size":"13.721146583557129","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230411-000001-e20230411-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.553 + 0.002 37.723 180","-37.553 -180 37.723 -0.005"],"time_start":"2023-04-12T00:00:02.000Z","updated":"2023-04-21T20:15:29.135Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-12T23:59:59.000Z","id":"G2662573860-POCLOUD","original_format":"UMM_JSON","granule_size":"13.782106399536133","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230412-000002-e20230412-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.656 + 0.001 37.512 180","-37.656 -180 37.512 -0.004"],"time_start":"2023-04-13T00:00:01.000Z","updated":"2023-04-16T02:03:28.801Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230413-000001-e20230413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-13T23:59:59.000Z","id":"G2657115911-POCLOUD","original_format":"UMM_JSON","granule_size":"13.831690788269043","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230413-000001-e20230413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230413-000001-e20230413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230413-000001-e20230413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230413-000001-e20230413-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.648 + 0 37.615 180","-37.648 -180 37.615 -0.004"],"time_start":"2023-04-14T00:00:01.000Z","updated":"2023-04-21T20:16:25.525Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-14T23:59:59.000Z","id":"G2662574450-POCLOUD","original_format":"UMM_JSON","granule_size":"13.771357536315918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230414-000001-e20230414-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.686 + 0 37.638 180","-37.686 -180 37.638 -0.001"],"time_start":"2023-04-15T00:00:01.000Z","updated":"2023-04-21T20:19:29.080Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-15T23:59:59.000Z","id":"G2662577372-POCLOUD","original_format":"UMM_JSON","granule_size":"13.897895812988281","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230415-000001-e20230415-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.512 + 0.001 37.631 180","-37.512 -180 37.631 0"],"time_start":"2023-04-16T00:00:01.000Z","updated":"2023-04-21T20:15:58.572Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-16T23:59:59.000Z","id":"G2662574325-POCLOUD","original_format":"UMM_JSON","granule_size":"14.232138633728027","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230416-000001-e20230416-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.623 + 0 37.6 180","-37.623 -180 37.6 -0.002"],"time_start":"2023-04-17T00:00:02.000Z","updated":"2023-04-22T01:49:01.734Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230417-000002-e20230417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-17T23:59:59.000Z","id":"G2662847248-POCLOUD","original_format":"UMM_JSON","granule_size":"14.176664352416992","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230417-000002-e20230417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230417-000002-e20230417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230417-000002-e20230417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230417-000002-e20230417-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.536 + 0.001 37.519 180","-37.536 -180 37.519 0"],"time_start":"2023-04-18T00:00:01.000Z","updated":"2023-04-24T19:51:40.977Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-18T23:59:59.000Z","id":"G2666036049-POCLOUD","original_format":"UMM_JSON","granule_size":"14.046786308288574","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230418-000001-e20230418-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.602 + 0 37.418 180","-37.602 -180 37.418 -0.004"],"time_start":"2023-04-19T00:00:02.000Z","updated":"2023-04-24T14:01:33.295Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230419-000002-e20230419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-19T23:59:59.000Z","id":"G2665720892-POCLOUD","original_format":"UMM_JSON","granule_size":"14.198573112487793","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230419-000002-e20230419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230419-000002-e20230419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230419-000002-e20230419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230419-000002-e20230419-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.523 + 0.002 37.683 180","-38.523 -180 37.683 -0.002"],"time_start":"2023-04-20T00:00:01.000Z","updated":"2023-04-23T13:56:30.757Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-20T23:59:59.000Z","id":"G2664873164-POCLOUD","original_format":"UMM_JSON","granule_size":"14.0137939453125","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230420-000001-e20230420-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.65 + 0.002 37.815 180","-37.65 -180 37.815 0"],"time_start":"2023-04-21T00:00:02.000Z","updated":"2023-04-26T01:48:31.488Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-21T23:59:59.000Z","id":"G2667248876-POCLOUD","original_format":"UMM_JSON","granule_size":"13.980423927307129","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230421-000002-e20230421-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.764 + 0.004 37.743 180","-37.764 -180 37.743 -0.002"],"time_start":"2023-04-22T00:00:01.000Z","updated":"2023-04-27T01:46:30.563Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-22T23:59:59.000Z","id":"G2668292098-POCLOUD","original_format":"UMM_JSON","granule_size":"13.954648971557617","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230422-000001-e20230422-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.771 + 0.003 37.75 180","-37.771 -180 37.75 -0.001"],"time_start":"2023-04-23T00:00:01.000Z","updated":"2023-04-26T19:51:29.924Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-23T23:59:59.000Z","id":"G2667987353-POCLOUD","original_format":"UMM_JSON","granule_size":"14.249069213867188","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230423-000001-e20230423-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.781 + 0.001 37.745 180","-37.781 -180 37.745 -0.002"],"time_start":"2023-04-24T00:00:02.000Z","updated":"2023-04-27T19:48:31.568Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-24T23:59:59.000Z","id":"G2669148270-POCLOUD","original_format":"UMM_JSON","granule_size":"14.458179473876953","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230424-000002-e20230424-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.792 + 0.001 37.722 180","-37.792 -180 37.722 -0.001"],"time_start":"2023-04-25T00:00:01.000Z","updated":"2023-04-30T13:56:31.604Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-25T23:59:59.000Z","id":"G2672651324-POCLOUD","original_format":"UMM_JSON","granule_size":"14.384611129760742","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230425-000001-e20230425-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.654 + 0.001 37.637 180","-37.654 -180 37.637 -0.001"],"time_start":"2023-04-26T00:00:01.000Z","updated":"2023-04-29T19:47:07.134Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-26T23:59:59.000Z","id":"G2671877739-POCLOUD","original_format":"UMM_JSON","granule_size":"14.397830963134766","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230426-000001-e20230426-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.726 + 0.001 37.625 180","-37.726 -180 37.625 0"],"time_start":"2023-04-27T00:00:02.000Z","updated":"2023-04-30T19:51:29.224Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-27T23:59:59.000Z","id":"G2672750904-POCLOUD","original_format":"UMM_JSON","granule_size":"14.19815731048584","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230427-000002-e20230427-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0.006 37.625 180","-37.616 -180 37.625 0"],"time_start":"2023-04-28T00:00:01.000Z","updated":"2023-05-03T01:47:32.267Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-28T23:59:59.000Z","id":"G2675214010-POCLOUD","original_format":"UMM_JSON","granule_size":"14.190196990966797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230428-000001-e20230428-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.732 + 0 37.676 180","-37.732 -180 37.676 -0.001"],"time_start":"2023-04-29T00:00:00.000Z","updated":"2023-05-05T17:15:18.816Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-29T23:59:59.000Z","id":"G2678450465-POCLOUD","original_format":"UMM_JSON","granule_size":"14.085451126098633","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230429-000000-e20230429-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.649 + 0.002 37.626 180","-37.649 -180 37.626 -0.001"],"time_start":"2023-04-30T00:00:01.000Z","updated":"2023-05-03T20:00:07.278Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-04-30T23:59:59.000Z","id":"G2675915921-POCLOUD","original_format":"UMM_JSON","granule_size":"13.830188751220703","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230430-000001-e20230430-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.642 + 0.002 37.525 180","-37.642 -180 37.525 -0.002"],"time_start":"2023-05-01T00:00:02.000Z","updated":"2023-05-05T19:44:28.183Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-01T23:59:59.000Z","id":"G2678850753-POCLOUD","original_format":"UMM_JSON","granule_size":"13.889213562011719","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230501-000002-e20230501-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.669 + 0 37.512 180","-37.669 -180 37.512 -0.002"],"time_start":"2023-05-02T00:00:01.000Z","updated":"2023-05-05T19:47:28.818Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-02T23:59:59.000Z","id":"G2678853754-POCLOUD","original_format":"UMM_JSON","granule_size":"14.050665855407715","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230502-000001-e20230502-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.729 + 0 37.503 180","-37.729 -180 37.503 -0.001"],"time_start":"2023-05-03T00:00:02.000Z","updated":"2023-05-05T19:45:26.426Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-03T23:59:59.000Z","id":"G2678851406-POCLOUD","original_format":"UMM_JSON","granule_size":"14.10507583618164","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230503-000002-e20230503-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.74 + 0 37.684 180","-37.74 -180 37.684 -0.002"],"time_start":"2023-05-04T00:00:01.000Z","updated":"2023-05-13T01:51:28.468Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-04T23:59:59.000Z","id":"G2686099281-POCLOUD","original_format":"UMM_JSON","granule_size":"11.924410820007324","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230504-000001-e20230504-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.723 + 0 37.491 180","-37.723 -180 37.491 -0.002"],"time_start":"2023-05-05T00:00:02.000Z","updated":"2023-05-13T01:51:28.604Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-05T23:59:59.000Z","id":"G2686099285-POCLOUD","original_format":"UMM_JSON","granule_size":"12.067107200622559","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230505-000002-e20230505-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.742 + 0 37.619 180","-37.742 -180 37.619 -0.001"],"time_start":"2023-05-06T00:00:01.000Z","updated":"2023-05-09T07:49:32.930Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-06T23:59:59.000Z","id":"G2681980990-POCLOUD","original_format":"UMM_JSON","granule_size":"14.116524696350098","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230506-000001-e20230506-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.717 + 0.009 37.688 180","-37.717 -180 37.688 0"],"time_start":"2023-05-07T00:00:01.000Z","updated":"2023-05-10T13:45:29.713Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-07T23:59:59.000Z","id":"G2683364053-POCLOUD","original_format":"UMM_JSON","granule_size":"14.212080955505371","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230507-000001-e20230507-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.796 + 0.001 37.723 180","-37.796 -180 37.723 -0.003"],"time_start":"2023-05-08T00:00:01.000Z","updated":"2023-05-11T13:45:30.595Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-08T23:59:59.000Z","id":"G2684676435-POCLOUD","original_format":"UMM_JSON","granule_size":"13.975236892700195","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230508-000001-e20230508-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.715 + 0 37.569 180","-37.715 -180 37.569 -0.001"],"time_start":"2023-05-09T00:00:01.000Z","updated":"2023-05-11T13:45:31.230Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-09T23:59:59.000Z","id":"G2684676442-POCLOUD","original_format":"UMM_JSON","granule_size":"13.920621871948242","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230509-000001-e20230509-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.756 + 0.003 37.524 180","-37.756 -180 37.524 0"],"time_start":"2023-05-10T00:00:00.000Z","updated":"2023-05-15T02:06:31.081Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-10T23:59:59.000Z","id":"G2687992428-POCLOUD","original_format":"UMM_JSON","granule_size":"13.931699752807617","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230510-000000-e20230510-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0.004 37.475 180","-37.632 -180 37.475 0"],"time_start":"2023-05-11T00:00:01.000Z","updated":"2023-05-15T02:07:29.479Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-11T23:59:59.000Z","id":"G2687993429-POCLOUD","original_format":"UMM_JSON","granule_size":"14.242854118347168","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230511-000001-e20230511-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.543 + 0.005 37.491 180","-37.543 -180 37.491 -0.002"],"time_start":"2023-05-12T00:00:01.000Z","updated":"2023-05-15T13:48:36.873Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-12T23:59:59.000Z","id":"G2688444456-POCLOUD","original_format":"UMM_JSON","granule_size":"14.36673641204834","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230512-000001-e20230512-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.616 + 0.001 37.522 180","-37.616 -180 37.522 -0.001"],"time_start":"2023-05-13T00:00:01.000Z","updated":"2023-05-18T02:05:02.028Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230513-000001-e20230513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-13T23:59:59.000Z","id":"G2692149999-POCLOUD","original_format":"UMM_JSON","granule_size":"14.556418418884277","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230513-000001-e20230513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230513-000001-e20230513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230513-000001-e20230513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230513-000001-e20230513-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.624 + 0.003 37.629 180","-37.624 -180 37.629 -0.002"],"time_start":"2023-05-14T00:00:01.000Z","updated":"2023-05-23T07:56:35.873Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-14T23:59:59.000Z","id":"G2695903325-POCLOUD","original_format":"UMM_JSON","granule_size":"14.665565490722656","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230514-000001-e20230514-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.614 + 0 37.587 180","-37.614 -180 37.587 -0.002"],"time_start":"2023-05-15T00:00:01.000Z","updated":"2023-05-23T07:57:27.580Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-15T23:59:59.000Z","id":"G2695903590-POCLOUD","original_format":"UMM_JSON","granule_size":"14.626053810119629","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230515-000001-e20230515-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.565 + 0.002 37.664 180","-37.565 -180 37.664 -0.004"],"time_start":"2023-05-16T00:00:02.000Z","updated":"2023-05-23T07:57:27.156Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230516-000002-e20230516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-16T23:59:59.000Z","id":"G2695903587-POCLOUD","original_format":"UMM_JSON","granule_size":"14.649645805358887","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230516-000002-e20230516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230516-000002-e20230516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230516-000002-e20230516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230516-000002-e20230516-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.618 + 0 37.66 180","-37.618 -180 37.66 -0.001"],"time_start":"2023-05-17T00:00:01.000Z","updated":"2023-05-23T07:56:34.387Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230517-000001-e20230517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-17T23:59:59.000Z","id":"G2695903308-POCLOUD","original_format":"UMM_JSON","granule_size":"14.437067985534668","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230517-000001-e20230517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230517-000001-e20230517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230517-000001-e20230517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230517-000001-e20230517-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.588 + 0 37.575 180","-37.588 -180 37.575 0"],"time_start":"2023-05-18T00:00:02.000Z","updated":"2023-05-24T02:01:30.167Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-18T23:59:59.000Z","id":"G2696694279-POCLOUD","original_format":"UMM_JSON","granule_size":"14.344603538513184","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230518-000002-e20230518-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.552 + 0.002 37.563 180","-37.552 -180 37.563 -0.001"],"time_start":"2023-05-19T00:00:01.000Z","updated":"2023-05-24T19:57:29.349Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-19T23:59:59.000Z","id":"G2697260718-POCLOUD","original_format":"UMM_JSON","granule_size":"13.826910972595215","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230519-000001-e20230519-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.405 + 0.002 37.467 180","-37.405 -180 37.467 -0.003"],"time_start":"2023-05-20T00:00:01.000Z","updated":"2023-06-05T08:01:31.482Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-20T23:59:59.000Z","id":"G2703825396-POCLOUD","original_format":"UMM_JSON","granule_size":"14.254727363586426","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230520-000001-e20230520-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.433 + 0.002 37.488 180","-37.433 -180 37.488 0"],"time_start":"2023-05-21T00:00:02.000Z","updated":"2023-06-05T03:38:31.768Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-21T23:59:59.000Z","id":"G2703747515-POCLOUD","original_format":"UMM_JSON","granule_size":"14.289905548095703","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230521-000002-e20230521-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.424 + 0 37.516 180","-37.424 -180 37.516 -0.001"],"time_start":"2023-05-22T00:00:02.000Z","updated":"2023-06-05T08:04:31.320Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-22T23:59:59.000Z","id":"G2703825832-POCLOUD","original_format":"UMM_JSON","granule_size":"14.35949420928955","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230522-000002-e20230522-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.475 + 0.001 37.578 180","-37.475 -180 37.578 -0.002"],"time_start":"2023-05-23T00:00:02.000Z","updated":"2023-06-05T08:02:25.420Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-23T23:59:59.000Z","id":"G2703825636-POCLOUD","original_format":"UMM_JSON","granule_size":"14.329771995544434","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230523-000002-e20230523-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.462 + 0.006 37.534 180","-37.462 -180 37.534 0"],"time_start":"2023-05-24T00:00:01.000Z","updated":"2023-06-05T08:01:33.938Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-24T23:59:59.000Z","id":"G2703825409-POCLOUD","original_format":"UMM_JSON","granule_size":"14.241646766662598","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230524-000001-e20230524-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.478 + 0.002 37.552 180","-37.478 -180 37.552 -0.001"],"time_start":"2023-05-25T00:00:01.000Z","updated":"2023-06-05T08:05:47.855Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-25T23:59:59.000Z","id":"G2703826850-POCLOUD","original_format":"UMM_JSON","granule_size":"14.139178276062012","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230525-000001-e20230525-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.534 + 0 37.584 180","-37.534 -180 37.584 -0.003"],"time_start":"2023-05-26T00:00:00.000Z","updated":"2023-06-05T08:07:29.699Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-26T23:59:59.000Z","id":"G2703827066-POCLOUD","original_format":"UMM_JSON","granule_size":"14.036836624145508","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230526-000000-e20230526-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.4 + 0 37.629 180","-37.4 -180 37.629 -0.001"],"time_start":"2023-05-27T00:00:01.000Z","updated":"2023-06-05T08:04:32.641Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230527-000001-e20230527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-27T23:59:59.000Z","id":"G2703825835-POCLOUD","original_format":"UMM_JSON","granule_size":"13.698687553405762","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230527-000001-e20230527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230527-000001-e20230527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230527-000001-e20230527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230527-000001-e20230527-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.455 + 0.002 37.55 180","-37.455 -180 37.55 0"],"time_start":"2023-05-28T00:00:01.000Z","updated":"2023-06-05T03:38:30.983Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-28T23:59:59.000Z","id":"G2703747510-POCLOUD","original_format":"UMM_JSON","granule_size":"13.201598167419434","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230528-000001-e20230528-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.382 + 0.001 37.555 180","-38.382 -180 37.555 -0.001"],"time_start":"2023-05-29T00:00:01.000Z","updated":"2023-06-05T03:38:34.439Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-29T23:59:59.000Z","id":"G2703747541-POCLOUD","original_format":"UMM_JSON","granule_size":"12.437830924987793","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230529-000001-e20230529-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.562 + 0.004 37.55 180","-37.562 -180 37.55 -0.001"],"time_start":"2023-05-30T00:00:00.000Z","updated":"2023-06-05T03:38:32.377Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-30T23:59:59.000Z","id":"G2703747523-POCLOUD","original_format":"UMM_JSON","granule_size":"12.262943267822266","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230530-000000-e20230530-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.567 + 0 37.45 180","-37.567 -180 37.45 0"],"time_start":"2023-05-31T00:00:02.000Z","updated":"2023-06-05T03:40:24.529Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230531-000002-e20230531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-05-31T23:59:59.000Z","id":"G2703748648-POCLOUD","original_format":"UMM_JSON","granule_size":"11.946310997009277","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230531-000002-e20230531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230531-000002-e20230531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230531-000002-e20230531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230531-000002-e20230531-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.543 + 0.005 37.399 180","-37.543 -180 37.399 -0.002"],"time_start":"2023-06-01T00:00:01.000Z","updated":"2023-06-05T03:42:25.521Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-01T23:59:59.000Z","id":"G2703749221-POCLOUD","original_format":"UMM_JSON","granule_size":"12.091546058654785","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230601-000001-e20230601-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.561 + 0.005 37.435 180","-37.561 -180 37.435 -0.002"],"time_start":"2023-06-02T00:00:01.000Z","updated":"2023-06-08T02:00:33.380Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-02T23:59:59.000Z","id":"G2705929670-POCLOUD","original_format":"UMM_JSON","granule_size":"11.53489875793457","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230602-000001-e20230602-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.517 + 0 37.287 180","-37.517 -180 37.287 0"],"time_start":"2023-06-03T00:00:02.000Z","updated":"2023-06-07T14:29:33.335Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-03T23:59:59.000Z","id":"G2705705921-POCLOUD","original_format":"UMM_JSON","granule_size":"12.186311721801758","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230603-000002-e20230603-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.028 + 0.006 37.343 180","-38.028 -180 37.343 -0.002"],"time_start":"2023-06-04T00:00:01.000Z","updated":"2023-06-09T01:50:35.046Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-04T23:59:59.000Z","id":"G2706613617-POCLOUD","original_format":"UMM_JSON","granule_size":"12.131329536437988","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230604-000001-e20230604-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.607 + 0 37.307 180","-38.607 -180 37.307 -0.004"],"time_start":"2023-06-05T00:00:02.000Z","updated":"2023-06-10T03:40:27.869Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-05T23:59:59.000Z","id":"G2707307162-POCLOUD","original_format":"UMM_JSON","granule_size":"10.826864242553711","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230605-000002-e20230605-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.749 + 0.001 37.196 180","-37.749 -180 37.196 -0.005"],"time_start":"2023-06-06T00:00:01.000Z","updated":"2023-06-10T14:05:31.755Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-06T23:59:59.000Z","id":"G2707638485-POCLOUD","original_format":"UMM_JSON","granule_size":"11.977262496948242","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230606-000001-e20230606-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.578 + 0.002 37.35 180","-37.578 -180 37.35 -0.003"],"time_start":"2023-06-07T00:00:01.000Z","updated":"2023-06-12T02:12:27.915Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-07T23:59:59.000Z","id":"G2708551891-POCLOUD","original_format":"UMM_JSON","granule_size":"11.942179679870605","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230607-000001-e20230607-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.71 + 0.001 37.322 180","-37.71 -180 37.322 -0.003"],"time_start":"2023-06-08T00:00:01.000Z","updated":"2023-06-12T02:13:26.376Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230608-000001-e20230608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-08T23:59:59.000Z","id":"G2708552151-POCLOUD","original_format":"UMM_JSON","granule_size":"12.484317779541016","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230608-000001-e20230608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230608-000001-e20230608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230608-000001-e20230608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230608-000001-e20230608-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.847 + 0.007 37.496 180","-37.847 -180 37.496 -0.002"],"time_start":"2023-06-09T00:00:01.000Z","updated":"2023-06-12T02:15:25.791Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230609-000001-e20230609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-09T23:59:59.000Z","id":"G2708553165-POCLOUD","original_format":"UMM_JSON","granule_size":"12.993376731872559","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230609-000001-e20230609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230609-000001-e20230609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230609-000001-e20230609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230609-000001-e20230609-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.725 + 0 37.643 180","-37.725 -180 37.643 -0.007"],"time_start":"2023-06-10T00:00:01.000Z","updated":"2023-06-13T20:05:31.802Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-10T23:59:59.000Z","id":"G2709846838-POCLOUD","original_format":"UMM_JSON","granule_size":"13.3544282913208","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230610-000001-e20230610-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.817 + 0.009 37.549 180","-37.817 -180 37.549 -0.002"],"time_start":"2023-06-11T00:00:02.000Z","updated":"2023-06-15T02:12:28.574Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-11T23:59:59.000Z","id":"G2711247652-POCLOUD","original_format":"UMM_JSON","granule_size":"13.593826293945312","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230611-000002-e20230611-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0.005 37.511 180","-37.638 -180 37.511 -0.001"],"time_start":"2023-06-12T00:00:01.000Z","updated":"2023-06-16T02:09:31.153Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-12T23:59:59.000Z","id":"G2712289501-POCLOUD","original_format":"UMM_JSON","granule_size":"13.695974349975586","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230612-000001-e20230612-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.781 + 0.001 37.568 180","-37.781 -180 37.568 -0.002"],"time_start":"2023-06-13T00:00:02.000Z","updated":"2023-06-16T02:09:30.257Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-13T23:59:59.000Z","id":"G2712289467-POCLOUD","original_format":"UMM_JSON","granule_size":"13.730960845947266","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230613-000002-e20230613-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.581 + 0.006 37.485 180","-37.581 -180 37.485 0"],"time_start":"2023-06-14T00:00:01.000Z","updated":"2023-06-18T19:57:30.907Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-14T23:59:59.000Z","id":"G2714904883-POCLOUD","original_format":"UMM_JSON","granule_size":"14.133296012878418","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230614-000001-e20230614-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.642 + 0 37.496 180","-37.642 -180 37.496 0"],"time_start":"2023-06-15T00:00:01.000Z","updated":"2023-06-18T19:57:30.172Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-15T23:59:59.000Z","id":"G2714904880-POCLOUD","original_format":"UMM_JSON","granule_size":"14.205483436584473","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230615-000001-e20230615-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.665 + 0 37.471 180","-37.665 -180 37.471 -0.001"],"time_start":"2023-06-16T00:00:02.000Z","updated":"2023-06-21T01:51:04.194Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230616-000002-e20230616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-16T23:59:59.000Z","id":"G2716537204-POCLOUD","original_format":"UMM_JSON","granule_size":"14.211626052856445","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230616-000002-e20230616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230616-000002-e20230616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230616-000002-e20230616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230616-000002-e20230616-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.733 + 0.003 37.674 180","-37.733 -180 37.674 0"],"time_start":"2023-06-17T00:00:01.000Z","updated":"2023-06-21T13:53:33.563Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-17T23:59:59.000Z","id":"G2716998717-POCLOUD","original_format":"UMM_JSON","granule_size":"13.751128196716309","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230617-000001-e20230617-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.783 + 0.001 37.577 180","-37.783 -180 37.577 -0.001"],"time_start":"2023-06-18T00:00:01.000Z","updated":"2023-06-22T14:27:36.525Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-18T23:59:59.000Z","id":"G2718038991-POCLOUD","original_format":"UMM_JSON","granule_size":"14.2526273727417","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230618-000001-e20230618-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.608 + 0 37.696 180","-37.608 -180 37.696 -0.002"],"time_start":"2023-06-19T00:00:02.000Z","updated":"2023-06-22T14:27:35.625Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-19T23:59:59.000Z","id":"G2718038987-POCLOUD","original_format":"UMM_JSON","granule_size":"14.2658109664917","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230619-000002-e20230619-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.762 + 0.004 37.683 180","-37.762 -180 37.683 -0.004"],"time_start":"2023-06-20T00:00:01.000Z","updated":"2023-06-23T13:50:31.562Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-20T23:59:59.000Z","id":"G2718756986-POCLOUD","original_format":"UMM_JSON","granule_size":"14.428147315979004","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230620-000001-e20230620-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.638 + 0.001 37.649 180","-37.638 -180 37.649 -0.001"],"time_start":"2023-06-21T00:00:01.000Z","updated":"2023-06-24T01:54:31.766Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230621-000001-e20230621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-21T23:59:59.000Z","id":"G2719046316-POCLOUD","original_format":"UMM_JSON","granule_size":"14.528657913208008","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230621-000001-e20230621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230621-000001-e20230621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230621-000001-e20230621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230621-000001-e20230621-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.653 + 0.001 37.731 180","-37.653 -180 37.731 0"],"time_start":"2023-06-22T00:00:02.000Z","updated":"2023-06-25T01:59:30.893Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-22T23:59:59.000Z","id":"G2719558738-POCLOUD","original_format":"UMM_JSON","granule_size":"14.586298942565918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230622-000002-e20230622-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.668 + 0.001 37.684 180","-37.668 -180 37.684 -0.001"],"time_start":"2023-06-23T00:00:01.000Z","updated":"2023-06-26T20:19:30.883Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-23T23:59:59.000Z","id":"G2720525184-POCLOUD","original_format":"UMM_JSON","granule_size":"14.410496711730957","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230623-000001-e20230623-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.632 + 0.003 37.698 180","-37.632 -180 37.698 -0.002"],"time_start":"2023-06-24T00:00:01.000Z","updated":"2023-06-26T20:19:31.849Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-24T23:59:59.000Z","id":"G2720525185-POCLOUD","original_format":"UMM_JSON","granule_size":"14.325973510742188","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230624-000001-e20230624-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.604 + 0.002 37.671 180","-37.604 -180 37.671 0"],"time_start":"2023-06-25T00:00:01.000Z","updated":"2023-06-27T19:53:32.101Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-25T23:59:59.000Z","id":"G2721189212-POCLOUD","original_format":"UMM_JSON","granule_size":"14.206868171691895","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230625-000001-e20230625-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.563 + 0.004 37.561 180","-37.563 -180 37.561 0"],"time_start":"2023-06-26T00:00:01.000Z","updated":"2023-06-28T19:43:31.843Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-26T23:59:59.000Z","id":"G2722128045-POCLOUD","original_format":"UMM_JSON","granule_size":"13.928343772888184","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230626-000001-e20230626-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.533 + 0 37.702 180","-37.533 -180 37.702 -0.001"],"time_start":"2023-06-27T00:00:01.000Z","updated":"2023-06-30T07:50:31.729Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-27T23:59:59.000Z","id":"G2723533067-POCLOUD","original_format":"UMM_JSON","granule_size":"14.104394912719727","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230627-000001-e20230627-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.589 + 0 37.639 180","-37.589 -180 37.639 -0.001"],"time_start":"2023-06-28T00:00:01.000Z","updated":"2023-06-30T19:49:32.693Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-28T23:59:59.000Z","id":"G2724009564-POCLOUD","original_format":"UMM_JSON","granule_size":"13.894951820373535","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230628-000001-e20230628-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.59 + 0.001 37.616 180","-37.59 -180 37.616 -0.001"],"time_start":"2023-06-29T00:00:02.000Z","updated":"2023-07-04T08:10:31.522Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-29T23:59:59.000Z","id":"G2726084731-POCLOUD","original_format":"UMM_JSON","granule_size":"14.00310230255127","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230629-000002-e20230629-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.596 + 0.001 37.664 180","-37.596 -180 37.664 -0.001"],"time_start":"2023-06-30T00:00:01.000Z","updated":"2023-07-05T20:31:31.492Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-06-30T23:59:59.000Z","id":"G2726770067-POCLOUD","original_format":"UMM_JSON","granule_size":"13.825102806091309","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230630-000001-e20230630-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.559 + 0.009 37.647 180","-37.559 -180 37.647 -0.002"],"time_start":"2023-07-01T00:00:01.000Z","updated":"2023-07-14T19:39:32.373Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-01T23:59:58.000Z","id":"G2732746554-POCLOUD","original_format":"UMM_JSON","granule_size":"11.883118629455566","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230701-000001-e20230701-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.678 + 0.001 37.703 180","-37.678 -180 37.703 -0.001"],"time_start":"2023-07-02T00:00:01.000Z","updated":"2023-07-12T12:34:35.714Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-02T23:59:59.000Z","id":"G2731482538-POCLOUD","original_format":"UMM_JSON","granule_size":"12.025379180908203","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230702-000001-e20230702-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.717 + 0 37.752 180","-37.717 -180 37.752 -0.003"],"time_start":"2023-07-03T00:00:02.000Z","updated":"2023-07-12T12:34:33.396Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-03T23:59:59.000Z","id":"G2731482531-POCLOUD","original_format":"UMM_JSON","granule_size":"11.949962615966797","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230703-000002-e20230703-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.592 + 0.001 37.796 180","-37.592 -180 37.796 -0.001"],"time_start":"2023-07-04T00:00:01.000Z","updated":"2023-07-07T16:34:47.277Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-04T23:59:59.000Z","id":"G2728503223-POCLOUD","original_format":"UMM_JSON","granule_size":"12.952043533325195","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230704-000001-e20230704-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.604 + 0.003 37.79 180","-37.604 -180 37.79 -0.001"],"time_start":"2023-07-05T00:00:00.000Z","updated":"2023-07-08T13:47:33.153Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-05T23:59:59.000Z","id":"G2729058281-POCLOUD","original_format":"UMM_JSON","granule_size":"13.901052474975586","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230705-000000-e20230705-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.699 + 0.001 37.713 180","-37.699 -180 37.713 -0.001"],"time_start":"2023-07-06T00:00:01.000Z","updated":"2023-07-11T13:49:33.323Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-06T23:59:59.000Z","id":"G2730886012-POCLOUD","original_format":"UMM_JSON","granule_size":"14.100473403930664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230706-000001-e20230706-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.659 + 0.001 37.769 180","-37.659 -180 37.769 0"],"time_start":"2023-07-07T00:00:02.000Z","updated":"2023-07-12T19:48:33.918Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-07T23:59:59.000Z","id":"G2731629797-POCLOUD","original_format":"UMM_JSON","granule_size":"13.351216316223145","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230707-000002-e20230707-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.531 + 0.001 37.662 180","-37.531 -180 37.662 -0.001"],"time_start":"2023-07-08T00:00:01.000Z","updated":"2023-07-13T19:58:33.129Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-08T23:59:59.000Z","id":"G2732201057-POCLOUD","original_format":"UMM_JSON","granule_size":"13.974592208862305","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230708-000001-e20230708-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.533 + 0.003 37.523 180","-37.533 -180 37.523 -0.001"],"time_start":"2023-07-09T00:00:02.000Z","updated":"2023-07-13T01:43:32.489Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-09T23:59:59.000Z","id":"G2731741082-POCLOUD","original_format":"UMM_JSON","granule_size":"14.041421890258789","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230709-000002-e20230709-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.592 + 0 37.604 180","-37.592 -180 37.604 0"],"time_start":"2023-07-10T00:00:01.000Z","updated":"2023-07-14T01:53:32.704Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-10T23:59:59.000Z","id":"G2732320858-POCLOUD","original_format":"UMM_JSON","granule_size":"14.150041580200195","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230710-000001-e20230710-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.536 + 0.004 37.487 180","-37.536 -180 37.487 -0.002"],"time_start":"2023-07-11T00:00:02.000Z","updated":"2023-07-14T01:55:27.440Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-11T23:59:59.000Z","id":"G2732321138-POCLOUD","original_format":"UMM_JSON","granule_size":"13.774682998657227","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230711-000002-e20230711-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.642 + 0.001 37.493 180","-37.642 -180 37.493 -0.006"],"time_start":"2023-07-12T00:00:01.000Z","updated":"2023-07-17T01:56:30.975Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-12T23:59:59.000Z","id":"G2733849143-POCLOUD","original_format":"UMM_JSON","granule_size":"13.9069242477417","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230712-000001-e20230712-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.538 + 0 37.614 180","-37.538 -180 37.614 -0.005"],"time_start":"2023-07-13T00:00:01.000Z","updated":"2023-07-22T09:01:58.062Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230713-000001-e20230713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-13T23:59:59.000Z","id":"G2736933264-POCLOUD","original_format":"UMM_JSON","granule_size":"13.684471130371094","browse_flag":false,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230713-000001-e20230713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230713-000001-e20230713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230713-000001-e20230713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230713-000001-e20230713-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.641 + 0.002 37.662 180","-37.641 -180 37.662 -0.001"],"time_start":"2023-07-14T00:00:02.000Z","updated":"2023-07-22T09:01:28.840Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-14T23:59:59.000Z","id":"G2736933226-POCLOUD","original_format":"UMM_JSON","granule_size":"13.027963638305664","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230714-000002-e20230714-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.542 + 0 37.585 180","-37.542 -180 37.585 -0.002"],"time_start":"2023-07-15T00:00:01.000Z","updated":"2023-07-22T09:01:29.653Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-15T23:59:59.000Z","id":"G2736933227-POCLOUD","original_format":"UMM_JSON","granule_size":"13.023797988891602","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230715-000001-e20230715-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.503 + 0.003 37.43 180","-37.503 -180 37.43 -0.003"],"time_start":"2023-07-16T00:00:01.000Z","updated":"2023-07-22T09:05:27.612Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-16T23:59:59.000Z","id":"G2736933757-POCLOUD","original_format":"UMM_JSON","granule_size":"12.896461486816406","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230716-000001-e20230716-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.433 + 0.003 37.472 180","-37.433 -180 37.472 -0.004"],"time_start":"2023-07-17T00:00:01.000Z","updated":"2023-07-22T14:25:34.465Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-17T23:59:59.000Z","id":"G2737098937-POCLOUD","original_format":"UMM_JSON","granule_size":"12.092459678649902","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230717-000001-e20230717-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.346 + 0.005 37.34 180","-38.346 -180 37.34 -0.001"],"time_start":"2023-07-18T00:00:01.000Z","updated":"2023-07-22T14:25:30.676Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-18T23:59:59.000Z","id":"G2737098902-POCLOUD","original_format":"UMM_JSON","granule_size":"12.007811546325684","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230718-000001-e20230718-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.468 + 0.003 37.389 180","-37.468 -180 37.389 -0.001"],"time_start":"2023-07-19T00:00:01.000Z","updated":"2023-07-22T14:25:32.061Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-19T23:59:59.000Z","id":"G2737098913-POCLOUD","original_format":"UMM_JSON","granule_size":"11.991087913513184","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230719-000001-e20230719-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.529 + 0.004 37.448 180","-37.529 -180 37.448 -0.002"],"time_start":"2023-07-20T00:00:02.000Z","updated":"2023-07-22T19:59:30.922Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-20T23:59:59.000Z","id":"G2737177613-POCLOUD","original_format":"UMM_JSON","granule_size":"11.978463172912598","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230720-000002-e20230720-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.902 + 0.001 37.372 180","-37.902 -180 37.372 -0.002"],"time_start":"2023-07-21T00:00:02.000Z","updated":"2023-07-24T19:54:33.924Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-21T23:59:59.000Z","id":"G2737969953-POCLOUD","original_format":"UMM_JSON","granule_size":"11.86414623260498","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230721-000002-e20230721-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.493 + 0.003 37.43 180","-37.493 -180 37.43 -0.001"],"time_start":"2023-07-22T00:00:01.000Z","updated":"2023-07-26T02:01:36.824Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-22T23:59:59.000Z","id":"G2738603599-POCLOUD","original_format":"UMM_JSON","granule_size":"12.037407875061035","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230722-000001-e20230722-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.236 + 0.003 37.339 180","-38.236 -180 37.339 -0.003"],"time_start":"2023-07-23T00:00:02.000Z","updated":"2023-07-27T13:56:34.196Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-23T23:59:58.000Z","id":"G2739538818-POCLOUD","original_format":"UMM_JSON","granule_size":"11.761638641357422","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230723-000002-e20230723-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.196 + 0.003 37.384 180","-38.196 -180 37.384 0"],"time_start":"2023-07-24T00:00:01.000Z","updated":"2023-07-27T13:55:29.132Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-24T23:59:59.000Z","id":"G2739538665-POCLOUD","original_format":"UMM_JSON","granule_size":"11.804635047912598","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230724-000001-e20230724-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.44 + 0 37.275 180","-38.44 -180 37.275 -0.002"],"time_start":"2023-07-25T00:00:02.000Z","updated":"2023-07-28T02:05:28.831Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-25T23:59:59.000Z","id":"G2739696361-POCLOUD","original_format":"UMM_JSON","granule_size":"11.840263366699219","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230725-000002-e20230725-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.624 + 0.001 37.465 180","-38.624 -180 37.465 -0.003"],"time_start":"2023-07-26T00:00:01.000Z","updated":"2023-08-01T01:51:30.090Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-26T23:59:59.000Z","id":"G2741747022-POCLOUD","original_format":"UMM_JSON","granule_size":"11.85037612915039","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230726-000001-e20230726-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.924 + 0 37.512 180","-38.924 -180 37.512 -0.002"],"time_start":"2023-07-27T00:00:01.000Z","updated":"2023-08-01T20:13:30.248Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-27T23:59:59.000Z","id":"G2742199456-POCLOUD","original_format":"UMM_JSON","granule_size":"12.397693634033203","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230727-000001-e20230727-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.509 + 0.001 37.484 180","-37.509 -180 37.484 0"],"time_start":"2023-07-28T00:00:02.000Z","updated":"2023-08-01T20:13:30.369Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-28T23:59:59.000Z","id":"G2742199457-POCLOUD","original_format":"UMM_JSON","granule_size":"13.00107479095459","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230728-000002-e20230728-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-38.649 + 0 37.523 180","-38.649 -180 37.523 -0.004"],"time_start":"2023-07-29T00:00:01.000Z","updated":"2023-08-02T02:00:31.920Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-29T23:59:59.000Z","id":"G2742373679-POCLOUD","original_format":"UMM_JSON","granule_size":"13.132991790771484","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230729-000001-e20230729-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.589 + 0.002 37.417 180","-37.589 -180 37.417 -0.001"],"time_start":"2023-07-30T00:00:01.000Z","updated":"2023-08-02T13:47:30.882Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-30T23:59:59.000Z","id":"G2742769631-POCLOUD","original_format":"UMM_JSON","granule_size":"13.597691535949707","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230730-000001-e20230730-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.498 + 0.002 37.414 180","-37.498 -180 37.414 0"],"time_start":"2023-07-31T00:00:01.000Z","updated":"2023-08-02T19:45:32.179Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-07-31T23:59:59.000Z","id":"G2742923141-POCLOUD","original_format":"UMM_JSON","granule_size":"13.536723136901855","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230731-000001-e20230731-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.33 + 0.001 37.368 180","-37.33 -180 37.368 -0.004"],"time_start":"2023-08-01T00:00:02.000Z","updated":"2023-08-06T02:51:33.166Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-08-01T23:59:59.000Z","id":"G2745662053-POCLOUD","original_format":"UMM_JSON","granule_size":"13.304804801940918","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230801-000002-e20230801-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.499 + 0.001 37.438 180","-37.499 -180 37.438 0"],"time_start":"2023-08-02T00:00:01.000Z","updated":"2023-08-07T19:53:34.280Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-08-02T23:59:59.000Z","id":"G2746457719-POCLOUD","original_format":"UMM_JSON","granule_size":"13.724373817443848","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230802-000001-e20230802-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.506 + 0.001 37.455 180","-37.506 -180 37.455 -0.003"],"time_start":"2023-08-03T00:00:02.000Z","updated":"2023-08-06T08:05:34.317Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-08-03T23:59:59.000Z","id":"G2745787794-POCLOUD","original_format":"UMM_JSON","granule_size":"13.727459907531738","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230803-000002-e20230803-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.501 + 0.001 37.348 180","-37.501 -180 37.348 -0.005"],"time_start":"2023-08-04T00:00:01.000Z","updated":"2023-08-08T14:05:37.544Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-08-04T23:59:59.000Z","id":"G2746858865-POCLOUD","original_format":"UMM_JSON","granule_size":"13.653793334960938","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230804-000001-e20230804-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.624 + 0 37.621 180","-37.624 -180 37.621 0"],"time_start":"2023-08-05T00:00:02.000Z","updated":"2023-08-08T20:04:36.683Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-08-05T23:59:59.000Z","id":"G2746967680-POCLOUD","original_format":"UMM_JSON","granule_size":"13.497791290283203","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230805-000002-e20230805-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.646 + 0 37.651 180","-37.646 -180 37.651 -0.002"],"time_start":"2023-08-06T00:00:01.000Z","updated":"2023-08-11T20:31:35.006Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-08-06T23:59:58.000Z","id":"G2748826679-POCLOUD","original_format":"UMM_JSON","granule_size":"13.417620658874512","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230806-000001-e20230806-235958.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]},{"boxes":["-37.588 + 0.001 37.729 180","-37.588 -180 37.729 -0.004"],"time_start":"2023-08-09T00:00:02.000Z","updated":"2023-08-13T14:15:30.685Z","dataset_id":"NOAA + CYGNSS Level 2 Science Wind Speed 25-km Product Version 1.2","data_center":"POCLOUD","title":"cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2023-08-09T23:59:59.000Z","id":"G2749864797-POCLOUD","original_format":"UMM_JSON","granule_size":"13.77553939819336","browse_flag":true,"collection_concept_id":"C2254232941-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2254232941-POCLOUD/granules/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lat.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_lon.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.incidence_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.track_id.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.rx_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.snr.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.range_corr_gain.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sample_flags.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.nbrcs_mean_corrected.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.wind_speed_uncertainty.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.azimuth_angle.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_roll.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_pitch.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_yaw.png"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/png","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/CYGNSS_NOAA_L2_SWSP_25KM_V1.2/cyg.ddmi.s20230809-000002-e20230809-235959.l2.wind_trackgridsize25km_NOAAv1.2_L1a21.d21.sc_alt.png"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-18-0337.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://manati.star.nesdis.noaa.gov/products/CYGNSS.php"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/IGARSS.2019.8898099"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1175/BAMS-D-14-00218.1"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/basic_user_guide_noaa_l2_wind_v1.1.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://cygnss.engin.umich.edu/wp-content/uploads/sites/534/2021/06/CYGNSS_Handbook_April2016.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2254232941-POCLOUD"},{"inherited":true,"length":"0.0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2254232941-POCLOUD"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/OPeNDAP-in-the-Cloud"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/docs/atbd_noaa_l2_wind_v1.2_apr072022.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L2/noaa/README.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/TGRS.2021.3087426"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://doi.org/10.1109/GNSSR53802.2021.9617693"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_1.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_2.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_3.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_4.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_5.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_6.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_7.txt"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/cygnss/open/L1/docs/att_tables/Attitude_Table_FM_8.txt"}]}]}}' + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - CMR-Hits, CMR-Request-Id, X-Request-Id, CMR-Scroll-Id, CMR-Search-After, CMR-Timed-Out, + CMR-Shapefile-Original-Point-Count, CMR-Shapefile-Simplified-Point-Count + CMR-Hits: + - '2285' + CMR-Request-Id: + - 23613202-1457-485a-abff-30b995a05c52 + CMR-Search-After: + - '["pocloud",1691539202000,2749864797]' + CMR-Took: + - '4164' + Connection: + - keep-alive + Content-Type: + - application/json;charset=utf-8 + Date: + - Mon, 14 Aug 2023 17:03:00 GMT + Server: + - ServerTokens ProductOnly + Strict-Transport-Security: + - max-age=31536000 + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding, User-Agent + Via: + - 1.1 acc85cd7bb80090b1fc6f29cede93766.cloudfront.net (CloudFront) + X-Amz-Cf-Id: + - qDrfQ9M0Z-UYF-h0iKvZcYBZfcpPoXMLtbYUMiHNNErLCHuzoIISnQ== + X-Amz-Cf-Pop: + - SFO53-C1 + X-Cache: + - Miss from cloudfront + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Request-Id: + - qDrfQ9M0Z-UYF-h0iKvZcYBZfcpPoXMLtbYUMiHNNErLCHuzoIISnQ== + X-XSS-Protection: + - 1; mode=block + content-length: + - '3281379' + status: + code: 200 + message: OK +version: 1 diff --git a/fixtures/vcr_cassettes/MOD02QKM_2000.yaml b/fixtures/vcr_cassettes/MOD02QKM_2000.yaml new file mode 100644 index 0000000..e20a9f4 --- /dev/null +++ b/fixtures/vcr_cassettes/MOD02QKM_2000.yaml @@ -0,0 +1,12068 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://cmr.earthdata.nasa.gov/search/granules.json?short_name=MOD02QKM&page_size=2000 + response: + body: + string: '{"feed":{"updated":"2023-08-14T17:02:35.229Z","id":"https://cmr.earthdata.nasa.gov:443/search/granules.json?short_name=MOD02QKM&page_size=2000","title":"ECHO + granule metadata","entry":[{"producer_granule_id":"MOD02QKM.A2000055.0005.061.2017171194850.hdf","time_start":"2000-02-24T00:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071895","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T00:10:00.000Z","id":"G1462754234-LAADS","original_format":"ECHO10","granule_size":"26.6880235671997","browse_flag":true,"polygons":[["76.50228 + 146.932438 66.835767 -145.553577 70.509885 -94.815506 84.145132 9.997243 76.50228 + 146.932438"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0005.061.2017171194850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0005.061.2017171194850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0005.061.2017171194850.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0005.061.2017272125720.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0010.061.2017171195126.hdf","time_start":"2000-02-24T00:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072177","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T00:15:00.000Z","id":"G1462754407-LAADS","original_format":"ECHO10","granule_size":"45.6425333023071","browse_flag":true,"polygons":[["58.831248 + 150.408066 53.551985 -171.273133 67.194745 -145.975778 76.970977 145.201467 + 58.831248 150.408066"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0010.061.2017171195126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0010.061.2017171195126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0010.061.2017171195126.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0010.061.2017272130054.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0015.061.2017171194846.hdf","time_start":"2000-02-24T00:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072178","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T00:20:00.000Z","id":"G1462754409-LAADS","original_format":"ECHO10","granule_size":"45.4514541625977","browse_flag":true,"polygons":[["41.059722 + 149.302688 37.346414 176.683798 53.834299 -171.857924 59.32217 149.956049 + 41.059722 149.302688"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0015.061.2017171194846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0015.061.2017171194846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0015.061.2017171194846.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0015.061.2017272125805.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0020.061.2017171194824.hdf","time_start":"2000-02-24T00:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072179","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T00:25:00.000Z","id":"G1462754405-LAADS","original_format":"ECHO10","granule_size":"45.4478721618652","browse_flag":true,"polygons":[["23.261348 + 147.019195 20.15903 169.609171 37.551654 176.20262 41.481045 149.134821 23.261348 + 147.019195"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0020.061.2017171194824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0020.061.2017171194824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0020.061.2017171194824.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0020.061.2017272130033.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0025.061.2017171194900.hdf","time_start":"2000-02-24T00:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072180","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T00:30:00.000Z","id":"G1462754403-LAADS","original_format":"ECHO10","granule_size":"45.8904113769531","browse_flag":true,"polygons":[["5.405153 + 143.910148 2.444841 164.701569 20.302769 169.270907 23.573383 146.954378 5.405153 + 143.910148"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0025.061.2017171194900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0025.061.2017171194900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0025.061.2017171194900.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0025.061.2017272125837.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0030.061.2017171194641.hdf","time_start":"2000-02-24T00:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071896","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T00:35:00.000Z","id":"G1462754236-LAADS","original_format":"ECHO10","granule_size":"46.0441989898682","browse_flag":true,"polygons":[["-12.287038 + 139.821789 -15.443131 161.004413 2.546241 164.534397 5.585501 143.903022 -12.287038 + 139.821789"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0030.061.2017171194641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0030.061.2017171194641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0030.061.2017171194641.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0030.061.2017272125917.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0035.061.2017171194757.hdf","time_start":"2000-02-24T00:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072181","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T00:40:00.000Z","id":"G1462754408-LAADS","original_format":"ECHO10","granule_size":"45.5207557678223","browse_flag":true,"polygons":[["-29.754437 + 134.057622 -33.492328 158.328971 -15.334144 161.212598 -12.198118 139.842066 + -29.754437 134.057622"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0035.061.2017171194757.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0035.061.2017171194757.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0035.061.2017171194757.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0035.061.2017272130039.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0040.061.2017171194718.hdf","time_start":"2000-02-24T00:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072529","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T00:45:00.000Z","id":"G1462754510-LAADS","original_format":"ECHO10","granule_size":"45.3783416748047","browse_flag":true,"polygons":[["-46.54097 + 124.848467 -51.498616 156.586567 -33.249403 158.74646 -29.678349 134.114913 + -46.54097 124.848467"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0040.061.2017171194718.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0040.061.2017171194718.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0040.061.2017171194718.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0040.061.2017272130011.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0045.061.2017171194838.hdf","time_start":"2000-02-24T00:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072182","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T00:50:00.000Z","id":"G1462754404-LAADS","original_format":"ECHO10","granule_size":"45.7362070083618","browse_flag":true,"polygons":[["-61.572612 + 106.946722 -69.382943 157.093902 -51.116795 157.251767 -46.508779 125.033524 + -61.572612 106.946722"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0045.061.2017171194838.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0045.061.2017171194838.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0045.061.2017171194838.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0045.061.2017272125934.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0050.061.2017171194751.hdf","time_start":"2000-02-24T00:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071897","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T00:55:00.000Z","id":"G1462754242-LAADS","original_format":"ECHO10","granule_size":"46.0308113098145","browse_flag":true,"polygons":[["-70.554244 + 66.664722 -86.455434 -169.461824 -68.882932 157.994841 -61.65155 107.380855 + -70.554244 66.664722"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0050.061.2017171194751.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0050.061.2017171194751.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0050.061.2017171194751.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0050.061.2017272125845.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0055.061.2017171194557.hdf","time_start":"2000-02-24T00:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071260","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T01:00:00.000Z","id":"G1462753927-LAADS","original_format":"ECHO10","granule_size":"34.5403614044189","browse_flag":true,"polygons":[["-65.672078 + 18.216874 -74.573705 -44.160122 -85.789796 -169.911269 -70.8851 67.045578 + -65.672078 18.216874"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0055.061.2017171194557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0055.061.2017171194557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0055.061.2017171194557.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0055.061.2017272125953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0145.061.2017171194827.hdf","time_start":"2000-02-24T01:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072183","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T01:50:00.000Z","id":"G1462754411-LAADS","original_format":"ECHO10","granule_size":"32.8065786361694","browse_flag":true,"polygons":[["72.584466 + 124.063052 64.360625 -178.054336 71.146441 -131.75177 86.906706 23.892961 + 72.584466 124.063052"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0145.061.2017171194827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0145.061.2017171194827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0145.061.2017171194827.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0145.061.2017272125946.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0150.061.2017171194249.hdf","time_start":"2000-02-24T01:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070583","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T01:55:00.000Z","id":"G1462753827-LAADS","original_format":"ECHO10","granule_size":"45.5721187591553","browse_flag":true,"polygons":[["54.873352 + 125.623424 50.077576 160.608282 64.707326 -178.577019 73.072271 122.913852 + 54.873352 125.623424"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0150.061.2017171194249.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0150.061.2017171194249.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0150.061.2017171194249.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0150.061.2017272130126.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0155.061.2017171195446.hdf","time_start":"2000-02-24T01:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072530","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T02:00:00.000Z","id":"G1462754512-LAADS","original_format":"ECHO10","granule_size":"45.4691886901855","browse_flag":true,"polygons":[["37.091132 + 124.147019 33.569428 150.099453 50.341605 160.030106 55.348807 125.241729 + 37.091132 124.147019"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0155.061.2017171195446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0155.061.2017171195446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0155.061.2017171195446.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0155.061.2017272130215.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0400.061.2017171195350.hdf","time_start":"2000-02-24T04:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071898","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T04:05:00.000Z","id":"G1462754238-LAADS","original_format":"ECHO10","granule_size":"45.6458568572998","browse_flag":true,"polygons":[["-53.58985 + 69.073667 -59.498063 106.886006 -41.230327 108.485168 -37.300995 81.21044 + -53.58985 69.073667"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0400.061.2017171195350.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0400.061.2017171195350.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0400.061.2017171195350.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0400.061.2017272130119.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0405.061.2017171194656.hdf","time_start":"2000-02-24T04:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071261","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T04:10:00.000Z","id":"G1462753929-LAADS","original_format":"ECHO10","granule_size":"45.5155324935913","browse_flag":true,"polygons":[["-66.791721 + 43.426473 -77.195247 110.430134 -59.062577 107.551488 -53.597235 69.359489 + -66.791721 43.426473"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0405.061.2017171194656.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0405.061.2017171194656.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0405.061.2017171194656.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0405.061.2017272130032.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0410.061.2017171195320.hdf","time_start":"2000-02-24T04:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071899","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T04:15:00.000Z","id":"G1462754239-LAADS","original_format":"ECHO10","granule_size":"4.11287021636963","browse_flag":true,"polygons":[["-70.457081 + -7.266347 -84.453876 -109.680973 -85.77796 -118.274192 -70.824024 -2.848852 + -70.457081 -7.266347"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0410.061.2017171195320.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0410.061.2017171195320.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0410.061.2017171195320.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0410.061.2017272125829.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0415.061.2017171194943.hdf","time_start":"2000-02-24T04:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072184","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T04:20:00.000Z","id":"G1462754410-LAADS","original_format":"ECHO10","granule_size":"21.4640617370605","browse_flag":true,"polygons":[["-60.058663 + -44.137848 -66.695843 -91.636664 -84.409688 -113.031794 -70.519576 -7.078176 + -60.058663 -44.137848"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0415.061.2017171194943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0415.061.2017171194943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0415.061.2017171194943.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0415.061.2017272130037.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0505.061.2017171194934.hdf","time_start":"2000-02-24T05:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072185","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T05:10:00.000Z","id":"G1462754412-LAADS","original_format":"ECHO10","granule_size":"45.4526243209839","browse_flag":true,"polygons":[["64.69837 + 76.04964 58.458182 120.811475 69.940064 154.561198 82.59976 61.750158 64.69837 + 76.04964"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0505.061.2017171194934.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0505.061.2017171194934.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0505.061.2017171194934.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0505.061.2017272125916.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0510.061.2017171195000.hdf","time_start":"2000-02-24T05:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072186","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T05:15:00.000Z","id":"G1462754413-LAADS","original_format":"ECHO10","granule_size":"45.6889801025391","browse_flag":true,"polygons":[["46.9435 + 75.695315 42.865016 105.708071 58.772817 120.205345 65.195032 75.41527 46.9435 + 75.695315"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0510.061.2017171195000.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0510.061.2017171195000.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0510.061.2017171195000.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0510.061.2017272130132.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0515.061.2017171194853.hdf","time_start":"2000-02-24T05:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072187","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T05:20:00.000Z","id":"G1462754414-LAADS","original_format":"ECHO10","granule_size":"45.6564989089966","browse_flag":true,"polygons":[["29.146802 + 73.703445 25.916886 97.42833 43.100885 105.150854 47.394017 75.4504 29.146802 + 73.703445"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0515.061.2017171194853.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0515.061.2017171194853.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0515.061.2017171194853.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0515.061.2017272130036.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0520.061.2017171194906.hdf","time_start":"2000-02-24T05:20:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071900","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T05:25:00.000Z","id":"G1462754235-LAADS","original_format":"ECHO10","granule_size":"45.7865734100342","browse_flag":true,"polygons":[["11.360703 + 70.874426 8.395845 92.000875 26.074212 97.062701 29.500527 73.611626 11.360703 + 70.874426"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0520.061.2017171194906.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0520.061.2017171194906.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0520.061.2017171194906.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0520.061.2017272130111.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0525.061.2017171194931.hdf","time_start":"2000-02-24T05:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072188","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T05:30:00.000Z","id":"G1462754420-LAADS","original_format":"ECHO10","granule_size":"46.3388872146606","browse_flag":true,"polygons":[["-6.343254 + 67.168633 -9.397127 87.984061 8.508409 91.783967 11.588043 70.852279 -6.343254 + 67.168633"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0525.061.2017171194931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0525.061.2017171194931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0525.061.2017171194931.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0525.061.2017272130034.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0530.061.2017171194950.hdf","time_start":"2000-02-24T05:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072189","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T05:35:00.000Z","id":"G1462754415-LAADS","original_format":"ECHO10","granule_size":"45.8200798034668","browse_flag":true,"polygons":[["-23.943518 + 62.090281 -27.43642 84.974045 -9.322365 88.06222 -6.250214 67.187039 -23.943518 + 62.090281"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0530.061.2017171194950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0530.061.2017171194950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0530.061.2017171194950.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0530.061.2017272125817.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0535.061.2017171194819.hdf","time_start":"2000-02-24T05:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072190","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T05:40:00.000Z","id":"G1462754419-LAADS","original_format":"ECHO10","granule_size":"45.6619825363159","browse_flag":true,"polygons":[["-41.020138 + 54.35195 -45.463838 82.868469 -27.235943 85.316736 -23.857617 62.122694 -41.020138 + 54.35195"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0535.061.2017171194819.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0535.061.2017171194819.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0535.061.2017171194819.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0535.061.2017272130028.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0540.061.2017171194841.hdf","time_start":"2000-02-24T05:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071901","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T05:45:00.000Z","id":"G1462754240-LAADS","original_format":"ECHO10","granule_size":"45.9666137695312","browse_flag":true,"polygons":[["-56.938906 + 40.312215 -63.489575 82.26483 -45.127588 83.451842 -40.968922 54.488027 -56.938906 + 40.312215"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0540.061.2017171194841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0540.061.2017171194841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0540.061.2017171194841.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0540.061.2017272125749.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0545.061.2017171194757.hdf","time_start":"2000-02-24T05:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071902","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T05:50:00.000Z","id":"G1462754244-LAADS","original_format":"ECHO10","granule_size":"45.9451961517334","browse_flag":true,"polygons":[["-68.814747 + 9.120249 -81.168143 90.044501 -63.025006 82.999933 -56.969413 40.656815 -68.814747 + 9.120249"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0545.061.2017171194757.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0545.061.2017171194757.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0545.061.2017171194757.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0545.061.2017272130041.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0550.061.2017171194754.hdf","time_start":"2000-02-24T05:50:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071903","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T05:55:00.000Z","id":"G1462754241-LAADS","original_format":"ECHO10","granule_size":"43.7720327377319","browse_flag":true,"polygons":[["-68.776657 + -42.606683 -80.353467 -122.945089 -80.56457 91.867787 -69.037722 9.662476 + -68.776657 -42.606683"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0550.061.2017171194754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0550.061.2017171194754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0550.061.2017171194754.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0550.061.2017272130007.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0640.061.2017171194930.hdf","time_start":"2000-02-24T06:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072191","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T06:45:00.000Z","id":"G1462754423-LAADS","original_format":"ECHO10","granule_size":"23.7699480056763","browse_flag":true,"polygons":[["78.381851 + 46.570333 67.866596 119.878184 69.917633 171.811224 82.418169 -95.776091 78.381851 + 46.570333"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0640.061.2017171194930.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0640.061.2017171194930.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0640.061.2017171194930.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0640.061.2017272130002.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0645.061.2017171194900.hdf","time_start":"2000-02-24T06:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072192","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T06:50:00.000Z","id":"G1462754418-LAADS","original_format":"ECHO10","granule_size":"28.4180612564087","browse_flag":true,"polygons":[["67.711851 + 50.871788 60.780398 99.607606 68.230351 119.519042 78.897372 45.868214 67.711851 + 50.871788"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0645.061.2017171194900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0645.061.2017171194900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0645.061.2017171194900.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0645.061.2017272125857.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.0730.061.2017171194659.hdf","time_start":"2000-02-24T07:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071904","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T07:35:00.000Z","id":"G1462754243-LAADS","original_format":"ECHO10","granule_size":"13.522216796875","browse_flag":true,"polygons":[["-66.902657 + -76.897187 -76.65358 -144.400109 -85.869254 -168.893238 -70.843603 -51.904725 + -66.902657 -76.897187"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0730.061.2017171194659.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.0730.061.2017171194659.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.0730.061.2017171194659.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.0730.061.2017272125852.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1000.061.2017171194725.hdf","time_start":"2000-02-24T10:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072193","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T10:05:00.000Z","id":"G1462754417-LAADS","original_format":"ECHO10","granule_size":"36.8368320465088","browse_flag":true,"polygons":[["70.547125 + 1.035218 62.938319 54.865218 71.156591 98.422362 86.994961 -62.40829 70.547125 + 1.035218"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1000.061.2017171194725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1000.061.2017171194725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1000.061.2017171194725.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1000.061.2017272125801.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1005.061.2017171194538.hdf","time_start":"2000-02-24T10:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072194","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T10:10:00.000Z","id":"G1462754416-LAADS","original_format":"ECHO10","granule_size":"46.1975984573364","browse_flag":true,"polygons":[["52.821664 + 1.905682 48.242429 35.431596 63.279141 54.305836 71.040523 0.023141 52.821664 + 1.905682"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1005.061.2017171194538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1005.061.2017171194538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1005.061.2017171194538.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1005.061.2017272130029.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1010.061.2017171194617.hdf","time_start":"2000-02-24T10:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072195","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T10:15:00.000Z","id":"G1462754422-LAADS","original_format":"ECHO10","granule_size":"46.0766878128052","browse_flag":true,"polygons":[["35.033004 + 0.310314 31.598976 25.600822 48.497394 34.868942 53.294209 1.605097 35.033004 + 0.310314"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1010.061.2017171194617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1010.061.2017171194617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1010.061.2017171194617.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1010.061.2017272130024.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1015.061.2017171194749.hdf","time_start":"2000-02-24T10:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071594","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T10:20:00.000Z","id":"G1462754085-LAADS","original_format":"ECHO10","granule_size":"46.4764680862427","browse_flag":true,"polygons":[["17.240274 + -2.261734 14.227576 19.444545 31.784718 25.163841 35.424034 0.182632 17.240274 + -2.261734"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1015.061.2017171194749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1015.061.2017171194749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1015.061.2017171194749.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1015.061.2017272125940.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1020.061.2017171194741.hdf","time_start":"2000-02-24T10:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071905","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T10:25:00.000Z","id":"G1462754245-LAADS","original_format":"ECHO10","granule_size":"47.1664047241211","browse_flag":true,"polygons":[["-0.497735 + -5.651394 -3.486405 15.029598 14.35708 19.159571 17.509864 -2.304616 -0.497735 + -5.651394"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1020.061.2017171194741.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1020.061.2017171194741.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1020.061.2017171194741.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1020.061.2017272125929.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1025.061.2017171195259.hdf","time_start":"2000-02-24T10:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072531","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T10:30:00.000Z","id":"G1462754509-LAADS","original_format":"ECHO10","granule_size":"18.2794227600098","browse_flag":true,"polygons":[["-18.135325 + -10.302492 -21.421116 11.797662 -14.405968 12.841758 -11.29904 -8.248981 -18.135325 + -10.302492"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1025.061.2017171195259.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1025.061.2017171195259.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1025.061.2017171195259.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1025.061.2017272125713.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1030.061.2017171194755.hdf","time_start":"2000-02-24T10:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072196","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T10:35:00.000Z","id":"G1462754421-LAADS","original_format":"ECHO10","granule_size":"46.7803516387939","browse_flag":true,"polygons":[["-35.457243 + -16.819126 -39.507543 9.293278 -21.311721 11.969835 -18.07381 -10.165738 -35.457243 + -16.819126"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1030.061.2017171194755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1030.061.2017171194755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1030.061.2017171194755.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1030.061.2017272125920.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1035.061.2017171195247.hdf","time_start":"2000-02-24T10:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072197","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T10:40:00.000Z","id":"G1462754425-LAADS","original_format":"ECHO10","granule_size":"46.4858493804932","browse_flag":true,"polygons":[["-51.850428 + -28.022461 -57.481405 8.015856 -39.216075 9.785429 -35.39101 -16.730463 -51.850428 + -28.022461"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1035.061.2017171195247.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1035.061.2017171195247.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1035.061.2017171195247.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1035.061.2017272125937.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1040.061.2017171195205.hdf","time_start":"2000-02-24T10:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071906","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T10:45:00.000Z","id":"G1462754246-LAADS","original_format":"ECHO10","granule_size":"46.3010234832764","browse_flag":true,"polygons":[["-65.653168 + -51.513005 -75.300636 10.422822 -57.058486 8.664839 -51.845282 -27.762716 + -65.653168 -51.513005"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1040.061.2017171195205.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1040.061.2017171195205.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1040.061.2017171195205.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1040.061.2017272130031.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1045.061.2017171194446.hdf","time_start":"2000-02-24T10:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070584","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T10:50:00.000Z","id":"G1462753832-LAADS","original_format":"ECHO10","granule_size":"46.1708450317383","browse_flag":true,"polygons":[["-70.553988 + -99.925945 -85.873372 142.66789 -74.756685 11.739055 -65.793669 -50.982192 + -70.553988 -99.925945"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1045.061.2017171194446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1045.061.2017171194446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1045.061.2017171194446.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1045.061.2017272125926.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1050.061.2017171200110.hdf","time_start":"2000-02-24T10:50:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072198","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T10:55:00.000Z","id":"G1462754424-LAADS","original_format":"ECHO10","granule_size":"24.5022802352905","browse_flag":true,"polygons":[["-61.51419 + -140.341728 -68.601785 169.216173 -86.003578 133.610097 -70.919869 -99.880609 + -61.51419 -140.341728"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1050.061.2017171200110.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1050.061.2017171200110.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1050.061.2017171200110.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1050.061.2017272125948.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1140.061.2017171194758.hdf","time_start":"2000-02-24T11:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072199","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T11:45:00.000Z","id":"G1462754426-LAADS","original_format":"ECHO10","granule_size":"43.1517887115479","browse_flag":true,"polygons":[["66.692367 + -23.030301 60.040957 24.46426 70.546264 61.459477 84.391663 -44.851905 66.692367 + -23.030301"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1140.061.2017171194758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1140.061.2017171194758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1140.061.2017171194758.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1140.061.2017272130049.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1145.061.2017171194848.hdf","time_start":"2000-02-24T11:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072200","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T11:50:00.000Z","id":"G1462754427-LAADS","original_format":"ECHO10","granule_size":"46.8616189956665","browse_flag":true,"polygons":[["48.855361 + -23.059057 44.629703 8.008627 60.361894 23.875204 67.186798 -23.798407 48.855361 + -23.059057"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1145.061.2017171194848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1145.061.2017171194848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1145.061.2017171194848.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1145.061.2017272130117.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1150.061.2017171194714.hdf","time_start":"2000-02-24T11:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071595","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T11:55:00.000Z","id":"G1462754088-LAADS","original_format":"ECHO10","granule_size":"46.3714189529419","browse_flag":true,"polygons":[["31.064614 + -24.92665 27.770655 -0.716442 44.869169 7.460134 49.314946 -23.315997 31.064614 + -24.92665"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1150.061.2017171194714.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1150.061.2017171194714.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1150.061.2017171194714.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1150.061.2017272130155.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1155.061.2017171194837.hdf","time_start":"2000-02-24T11:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071596","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T12:00:00.000Z","id":"G1462754089-LAADS","original_format":"ECHO10","granule_size":"46.2549991607666","browse_flag":true,"polygons":[["13.276032 + -27.66844 10.298619 -6.377207 27.937926 -1.120394 31.429066 -25.027274 13.276032 + -27.66844"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1155.061.2017171194837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1155.061.2017171194837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1155.061.2017171194837.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1155.061.2017272130129.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1200.061.2017171194734.hdf","time_start":"2000-02-24T12:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071262","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T12:05:00.000Z","id":"G1462753931-LAADS","original_format":"ECHO10","granule_size":"46.6497240066528","browse_flag":true,"polygons":[["-4.437769 + -31.263429 -7.465075 -10.522382 10.415425 -6.624239 13.51441 -27.696235 -4.437769 + -31.263429"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1200.061.2017171194734.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1200.061.2017171194734.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1200.061.2017171194734.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1200.061.2017272130116.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1205.061.2017171194702.hdf","time_start":"2000-02-24T12:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071263","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T12:10:00.000Z","id":"G1462753930-LAADS","original_format":"ECHO10","granule_size":"46.2176523208618","browse_flag":true,"polygons":[["-22.067285 + -36.152246 -25.491065 -13.634889 -7.395663 -10.481542 -4.338872 -31.250142 + -22.067285 -36.152246"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1205.061.2017171194702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1205.061.2017171194702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1205.061.2017171194702.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1205.061.2017272130043.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1210.061.2017171194921.hdf","time_start":"2000-02-24T12:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071907","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T12:15:00.000Z","id":"G1462754247-LAADS","original_format":"ECHO10","granule_size":"46.1228370666504","browse_flag":true,"polygons":[["-39.221499 + -43.50242 -43.52693 -15.837757 -25.306614 -13.310294 -21.978766 -36.125645 + -39.221499 -43.50242"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1210.061.2017171194921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1210.061.2017171194921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1210.061.2017171194921.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1210.061.2017272130103.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1215.061.2017171194715.hdf","time_start":"2000-02-24T12:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071908","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T12:20:00.000Z","id":"G1462754248-LAADS","original_format":"ECHO10","granule_size":"46.1275100708008","browse_flag":true,"polygons":[["-55.26591 + -56.45082 -61.475311 -16.697758 -43.203241 -15.292009 -39.162979 -43.381146 + -55.26591 -56.45082"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1215.061.2017171194715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1215.061.2017171194715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1215.061.2017171194715.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1215.061.2017272125908.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1220.061.2017171194905.hdf","time_start":"2000-02-24T12:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071909","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T12:25:00.000Z","id":"G1462754249-LAADS","original_format":"ECHO10","granule_size":"46.0084362030029","browse_flag":true,"polygons":[["-67.887332 + -84.822746 -79.210427 -11.253301 -61.024422 -15.920845 -55.284984 -56.133704 + -67.887332 -84.822746"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1220.061.2017171194905.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1220.061.2017171194905.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1220.061.2017171194905.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1220.061.2017272130047.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1225.061.2017171194642.hdf","time_start":"2000-02-24T12:25:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071597","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T12:30:00.000Z","id":"G1462754086-LAADS","original_format":"ECHO10","granule_size":"45.9760160446167","browse_flag":true,"polygons":[["-69.5524 + -136.172651 -82.283267 134.886696 -78.640394 -9.87475 -68.082114 -84.281287 + -69.5524 -136.172651"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1225.061.2017171194642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1225.061.2017171194642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1225.061.2017171194642.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1225.061.2017272125851.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1230.061.2017171194615.hdf","time_start":"2000-02-24T12:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071598","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T12:35:00.000Z","id":"G1462754090-LAADS","original_format":"ECHO10","granule_size":"17.9994354248047","browse_flag":true,"polygons":[["-58.509092 + -170.250747 -64.739883 144.936249 -82.642929 130.84951 -69.933203 -136.365334 + -58.509092 -170.250747"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1230.061.2017171194615.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1230.061.2017171194615.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1230.061.2017171194615.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1230.061.2017272125805.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1315.061.2017171194511.hdf","time_start":"2000-02-24T13:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072201","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T13:20:00.000Z","id":"G1462754428-LAADS","original_format":"ECHO10","granule_size":"21.0809183120728","browse_flag":true,"polygons":[["80.338271 + -54.435546 68.803011 25.917587 69.118781 78.312178 80.542114 160.85084 80.338271 + -54.435546"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1315.061.2017171194511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1315.061.2017171194511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1315.061.2017171194511.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1315.061.2017272125749.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1320.061.2017171194700.hdf","time_start":"2000-02-24T13:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071910","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T13:25:00.000Z","id":"G1462754250-LAADS","original_format":"ECHO10","granule_size":"46.4230623245239","browse_flag":true,"polygons":[["62.744192 + -47.342669 56.859499 -5.076601 69.174632 25.635621 80.766602 -57.115257 62.744192 + -47.342669"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1320.061.2017171194700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1320.061.2017171194700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1320.061.2017171194700.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1320.061.2017272130031.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1325.061.2017171194720.hdf","time_start":"2000-02-24T13:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072202","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T13:30:00.000Z","id":"G1462754492-LAADS","original_format":"ECHO10","granule_size":"46.1573820114136","browse_flag":true,"polygons":[["44.982063 + -48.093027 41.031831 -19.025734 57.159255 -5.6647 63.230404 -48.015481 44.982063 + -48.093027"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1325.061.2017171194720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1325.061.2017171194720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1325.061.2017171194720.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1325.061.2017272130226.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1330.061.2017171194641.hdf","time_start":"2000-02-24T13:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072203","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T13:35:00.000Z","id":"G1462754496-LAADS","original_format":"ECHO10","granule_size":"46.336329460144","browse_flag":true,"polygons":[["27.091025 + -50.193211 23.907177 -26.88195 41.25365 -19.539394 45.419138 -48.309264 27.091025 + -50.193211"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1330.061.2017171194641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1330.061.2017171194641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1330.061.2017171194641.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1330.061.2017272125943.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1335.061.2017171194533.hdf","time_start":"2000-02-24T13:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071599","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T13:40:00.000Z","id":"G1462754094-LAADS","original_format":"ECHO10","granule_size":"46.0796365737915","browse_flag":true,"polygons":[["9.312526 + -53.111514 6.351666 -32.121439 24.065972 -27.250872 27.433887 -50.269727 9.312526 + -53.111514"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1335.061.2017171194533.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1335.061.2017171194533.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1335.061.2017171194533.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1335.061.2017272125946.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1340.061.2017171194356.hdf","time_start":"2000-02-24T13:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070930","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T13:45:00.000Z","id":"G1462753862-LAADS","original_format":"ECHO10","granule_size":"46.5488700866699","browse_flag":true,"polygons":[["-8.391323 + -56.932013 -11.474568 -36.028673 6.46121 -32.327015 9.522147 -53.117636 -8.391323 + -56.932013"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1340.061.2017171194356.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1340.061.2017171194356.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1340.061.2017171194356.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1340.061.2017272125948.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1345.061.2017171194818.hdf","time_start":"2000-02-24T13:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072204","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T13:50:00.000Z","id":"G1462754491-LAADS","original_format":"ECHO10","granule_size":"46.0035905838013","browse_flag":true,"polygons":[["-25.949512 + -62.228743 -29.517757 -38.924539 -11.388975 -35.908098 -8.301624 -56.916107 + -25.949512 -62.228743"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1345.061.2017171194818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1345.061.2017171194818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1345.061.2017171194818.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1345.061.2017272130048.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1350.061.2017171194822.hdf","time_start":"2000-02-24T13:50:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071911","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T13:55:00.000Z","id":"G1462754255-LAADS","original_format":"ECHO10","granule_size":"45.8183679580688","browse_flag":true,"polygons":[["-42.935704 + -70.427947 -47.540103 -40.909605 -29.305308 -38.553294 -25.867673 -62.194401 + -42.935704 -70.427947"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1350.061.2017171194822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1350.061.2017171194822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1350.061.2017171194822.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1350.061.2017272125927.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1355.061.2017171194443.hdf","time_start":"2000-02-24T13:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070931","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T14:00:00.000Z","id":"G1462753866-LAADS","original_format":"ECHO10","granule_size":"45.8074035644531","browse_flag":true,"polygons":[["-58.545205 + -85.559908 -65.460883 -41.206062 -47.187426 -40.308292 -42.896144 -70.265057 + -58.545205 -85.559908"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1355.061.2017171194443.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1355.061.2017171194443.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1355.061.2017171194443.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1355.061.2017272125828.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1400.061.2017171194804.hdf","time_start":"2000-02-24T14:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071912","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T14:05:00.000Z","id":"G1462754254-LAADS","original_format":"ECHO10","granule_size":"45.7808980941772","browse_flag":true,"polygons":[["-69.58216 + -119.811383 -83.003508 -27.589006 -64.968351 -39.898143 -58.582334 -85.208348 + -69.58216 -119.811383"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1400.061.2017171194804.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1400.061.2017171194804.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1400.061.2017171194804.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1400.061.2017272125934.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1405.061.2017171194655.hdf","time_start":"2000-02-24T14:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071600","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T14:10:00.000Z","id":"G1462754091-LAADS","original_format":"ECHO10","granule_size":"20.6836538314819","browse_flag":true,"polygons":[["-67.795948 + -170.928885 -78.579996 114.490034 -87.326355 50.608845 -70.927753 -142.075662 + -67.795948 -170.928885"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1405.061.2017171194655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1405.061.2017171194655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1405.061.2017171194655.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1405.061.2017272125706.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1455.061.2017171194451.hdf","time_start":"2000-02-24T14:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071601","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T15:00:00.000Z","id":"G1462754105-LAADS","original_format":"ECHO10","granule_size":"27.9725151062012","browse_flag":true,"polygons":[["76.430207 + -75.128304 66.847579 -8.358111 70.602412 42.580073 84.240366 147.008938 76.430207 + -75.128304"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1455.061.2017171194451.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1455.061.2017171194451.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1455.061.2017171194451.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1455.061.2017272125902.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1500.061.2017171194842.hdf","time_start":"2000-02-24T15:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071913","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T15:05:00.000Z","id":"G1462754252-LAADS","original_format":"ECHO10","granule_size":"46.0582427978516","browse_flag":true,"polygons":[["58.711407 + -71.96593 53.483687 -33.99352 67.204402 -8.788421 76.890023 -76.960053 58.711407 + -71.96593"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1500.061.2017171194842.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1500.061.2017171194842.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1500.061.2017171194842.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1500.061.2017272130024.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1505.061.2017171194639.hdf","time_start":"2000-02-24T15:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071914","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T15:10:00.000Z","id":"G1462754251-LAADS","original_format":"ECHO10","granule_size":"45.8126163482666","browse_flag":true,"polygons":[["40.904798 + -73.183808 37.216615 -45.94559 53.749481 -34.541007 59.194284 -72.514052 40.904798 + -73.183808"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1505.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1505.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1505.061.2017171194639.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1505.061.2017272130030.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1510.061.2017171195016.hdf","time_start":"2000-02-24T15:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071915","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T15:15:00.000Z","id":"G1462754253-LAADS","original_format":"ECHO10","granule_size":"45.8481426239014","browse_flag":true,"polygons":[["23.08745 + -75.541572 19.986717 -52.946252 37.40597 -46.369976 41.326629 -73.431856 23.08745 + -75.541572"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1510.061.2017171195016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1510.061.2017171195016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1510.061.2017171195016.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1510.061.2017272125904.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1515.061.2017171194720.hdf","time_start":"2000-02-24T15:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071916","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T15:20:00.000Z","id":"G1462754256-LAADS","original_format":"ECHO10","granule_size":"46.2576112747192","browse_flag":true,"polygons":[["5.230282 + -78.707759 2.250304 -57.784446 20.119126 -53.219565 23.40504 -75.665344 5.230282 + -78.707759"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1515.061.2017171194720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1515.061.2017171194720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1515.061.2017171194720.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1515.061.2017272125943.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1520.061.2017171195129.hdf","time_start":"2000-02-24T15:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072205","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T15:25:00.000Z","id":"G1462754494-LAADS","original_format":"ECHO10","granule_size":"46.3565673828125","browse_flag":true,"polygons":[["-12.44674 + -82.850307 -15.647575 -61.377069 2.33668 -57.858171 5.416206 -78.759871 -12.44674 + -82.850307"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1520.061.2017171195129.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1520.061.2017171195129.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1520.061.2017171195129.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1520.061.2017272125839.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1525.061.2017171195012.hdf","time_start":"2000-02-24T15:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071917","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T15:30:00.000Z","id":"G1462754259-LAADS","original_format":"ECHO10","granule_size":"127.104674339294","browse_flag":true,"polygons":[["-29.883515 + -88.656145 -33.680904 -63.991081 -15.537678 -61.13725 -12.352552 -82.838276 + -29.883515 -88.656145"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1525.061.2017171195012.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1525.061.2017171195012.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1525.061.2017171195012.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1525.061.2017272131804.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1530.061.2017171195557.hdf","time_start":"2000-02-24T15:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072206","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T15:35:00.000Z","id":"G1462754493-LAADS","original_format":"ECHO10","granule_size":"163.133076667786","browse_flag":true,"polygons":[["-46.607968 + -97.96078 -51.65266 -65.622751 -33.429662 -63.544197 -29.79645 -88.622973 + -46.607968 -97.96078"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1530.061.2017171195557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1530.061.2017171195557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1530.061.2017171195557.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1530.061.2017272133206.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1535.061.2017171200140.hdf","time_start":"2000-02-24T15:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072207","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T15:40:00.000Z","id":"G1462754495-LAADS","original_format":"ECHO10","granule_size":"163.145351409912","browse_flag":true,"polygons":[["-61.534483 + -115.994026 -69.487533 -64.940567 -51.260446 -64.997881 -46.564701 -97.793753 + -61.534483 -115.994026"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1535.061.2017171200140.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1535.061.2017171200140.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1535.061.2017171200140.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1535.061.2017272133123.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1540.061.2017171195047.hdf","time_start":"2000-02-24T15:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071602","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T15:45:00.000Z","id":"G1462754106-LAADS","original_format":"ECHO10","granule_size":"154.843069076538","browse_flag":true,"polygons":[["-70.380019 + -156.129847 -86.370223 -28.830302 -68.970583 -63.919667 -61.606616 -115.56074 + -70.380019 -156.129847"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1540.061.2017171195047.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1540.061.2017171195047.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1540.061.2017171195047.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1540.061.2017272131635.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1545.061.2017171194410.hdf","time_start":"2000-02-24T15:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070932","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T15:50:00.000Z","id":"G1462753865-LAADS","original_format":"ECHO10","granule_size":"80.0783185958862","browse_flag":true,"polygons":[["-65.487126 + 155.990016 -74.527106 92.954743 -85.764392 -30.726411 -70.682667 -155.75551 + -65.487126 155.990016"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1545.061.2017171194410.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1545.061.2017171194410.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1545.061.2017171194410.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1545.061.2017272130039.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1635.061.2017171194641.hdf","time_start":"2000-02-24T16:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071603","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T16:40:00.000Z","id":"G1462754092-LAADS","original_format":"ECHO10","granule_size":"79.9471492767334","browse_flag":true,"polygons":[["72.503138 + -98.132048 64.360833 -40.849267 71.237303 5.572734 87.003968 161.948707 72.503138 + -98.132048"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1635.061.2017171194641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1635.061.2017171194641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1635.061.2017171194641.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1635.061.2017272130357.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1640.061.2017171194839.hdf","time_start":"2000-02-24T16:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071918","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T16:45:00.000Z","id":"G1462754257-LAADS","original_format":"ECHO10","granule_size":"154.967266082764","browse_flag":true,"polygons":[["54.745142 + -96.807729 50.011127 -62.129521 64.718297 -41.40756 72.984792 -99.420467 54.745142 + -96.807729"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1640.061.2017171194839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1640.061.2017171194839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1640.061.2017171194839.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1640.061.2017272131723.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1645.061.2017171194804.hdf","time_start":"2000-02-24T16:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071604","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T16:50:00.000Z","id":"G1462754093-LAADS","original_format":"ECHO10","granule_size":"164.794205665588","browse_flag":true,"polygons":[["36.935071 + -98.349891 33.433527 -72.507616 50.245716 -62.616708 55.221758 -97.242901 + 36.935071 -98.349891"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1645.061.2017171194804.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1645.061.2017171194804.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1645.061.2017171194804.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1645.061.2017272132239.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1650.061.2017171194653.hdf","time_start":"2000-02-24T16:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071605","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T16:55:00.000Z","id":"G1462754099-LAADS","original_format":"ECHO10","granule_size":"148.44912815094","browse_flag":true,"polygons":[["19.122116 + -100.874649 16.081702 -78.878244 33.608997 -72.899957 37.335378 -98.543546 + 19.122116 -100.874649"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1650.061.2017171194653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1650.061.2017171194653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1650.061.2017171194653.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1650.061.2017272131711.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1655.061.2017171194730.hdf","time_start":"2000-02-24T16:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071264","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T17:00:00.000Z","id":"G1462753932-LAADS","original_format":"ECHO10","granule_size":"142.822649002075","browse_flag":true,"polygons":[["1.378108 + -104.233207 -1.623932 -83.377068 16.204137 -79.119165 19.410978 -100.998733 + 1.378108 -104.233207"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1655.061.2017171194730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1655.061.2017171194730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1655.061.2017171194730.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1655.061.2017272131706.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1700.061.2017171194758.hdf","time_start":"2000-02-24T17:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072208","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T17:05:00.000Z","id":"G1462754501-LAADS","original_format":"ECHO10","granule_size":"156.284545898438","browse_flag":true,"polygons":[["-16.366207 + -108.685645 -19.665374 -86.744916 -1.549719 -83.368058 1.530651 -104.276126 + -16.366207 -108.685645"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1700.061.2017171194758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1700.061.2017171194758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1700.061.2017171194758.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1700.061.2017272131711.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1705.061.2017171194811.hdf","time_start":"2000-02-24T17:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071606","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T17:10:00.000Z","id":"G1462754097-LAADS","original_format":"ECHO10","granule_size":"154.051239967346","browse_flag":true,"polygons":[["-33.69057 + -115.044623 -37.691408 -89.170935 -19.523859 -86.462661 -16.274962 -108.664944 + -33.69057 -115.044623"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1705.061.2017171194811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1705.061.2017171194811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1705.061.2017171194811.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1705.061.2017272131847.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1710.061.2017171194638.hdf","time_start":"2000-02-24T17:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072209","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T17:15:00.000Z","id":"G1462754499-LAADS","original_format":"ECHO10","granule_size":"167.085754394531","browse_flag":true,"polygons":[["-50.158084 + -125.62081 -55.639553 -90.496378 -37.407537 -88.683508 -33.609277 -114.994186 + -50.158084 -125.62081"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1710.061.2017171194638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1710.061.2017171194638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1710.061.2017171194638.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1710.061.2017272132921.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1715.061.2017171194655.hdf","time_start":"2000-02-24T17:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071607","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T17:20:00.000Z","id":"G1462754095-LAADS","original_format":"ECHO10","granule_size":"159.660125732422","browse_flag":true,"polygons":[["-64.313998 + -147.162144 -73.420434 -88.383065 -55.216986 -89.762568 -50.132995 -125.406251 + -64.313998 -147.162144"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1715.061.2017171194655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1715.061.2017171194655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1715.061.2017171194655.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1715.061.2017272133206.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1720.061.2017171194740.hdf","time_start":"2000-02-24T17:20:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071608","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T17:25:00.000Z","id":"G1462754098-LAADS","original_format":"ECHO10","granule_size":"151.795297622681","browse_flag":true,"polygons":[["-70.570433 + 167.077302 -87.023936 18.88164 -72.8817 -87.38189 -64.431247 -146.675006 -70.570433 + 167.077302"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1720.061.2017171194740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1720.061.2017171194740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1720.061.2017171194740.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1720.061.2017272131706.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1725.061.2017171194639.hdf","time_start":"2000-02-24T17:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071919","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T17:30:00.000Z","id":"G1462754258-LAADS","original_format":"ECHO10","granule_size":"50.4163513183594","browse_flag":true,"polygons":[["-62.874364 + 124.190973 -70.605326 69.394277 -86.862812 6.822195 -70.928114 167.244684 + -62.874364 124.190973"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1725.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1725.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1725.061.2017171194639.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1725.061.2017272130222.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1815.061.2017171194432.hdf","time_start":"2000-02-24T18:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071265","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T18:20:00.000Z","id":"G1462753936-LAADS","original_format":"ECHO10","granule_size":"109.773515701294","browse_flag":true,"polygons":[["68.555776 + -121.936649 61.555557 -72.035274 71.075311 -31.72536 85.969427 -156.438025 + 68.555776 -121.936649"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1815.061.2017171194432.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1815.061.2017171194432.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1815.061.2017171194432.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1815.061.2017272130441.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1820.061.2017171194810.hdf","time_start":"2000-02-24T18:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072532","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T18:25:00.000Z","id":"G1462754511-LAADS","original_format":"ECHO10","granule_size":"155.791263580322","browse_flag":true,"polygons":[["50.783516 + -121.719383 46.420759 -89.705619 61.841996 -72.509876 69.048353 -122.881318 + 50.783516 -121.719383"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1820.061.2017171194810.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1820.061.2017171194810.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1820.061.2017171194810.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1820.061.2017272131941.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1825.061.2017171194755.hdf","time_start":"2000-02-24T18:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071920","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T18:30:00.000Z","id":"G1462754265-LAADS","original_format":"ECHO10","granule_size":"166.416916847229","browse_flag":true,"polygons":[["32.968586 + -123.579686 29.616089 -98.889319 46.650106 -90.20685 51.243045 -122.12846 + 32.968586 -123.579686"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1825.061.2017171194755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1825.061.2017171194755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1825.061.2017171194755.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1825.061.2017272132136.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1830.061.2017171194639.hdf","time_start":"2000-02-24T18:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071609","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T18:35:00.000Z","id":"G1462754096-LAADS","original_format":"ECHO10","granule_size":"157.654236793518","browse_flag":true,"polygons":[["15.161099 + -126.290433 12.16152 -104.733322 29.779581 -99.255379 33.347495 -123.757663 + 15.161099 -126.290433"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1830.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1830.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1830.061.2017171194639.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1830.061.2017272132029.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1835.061.2017171194704.hdf","time_start":"2000-02-24T18:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071610","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T18:40:00.000Z","id":"G1462754107-LAADS","original_format":"ECHO10","granule_size":"149.782402038574","browse_flag":true,"polygons":[["-2.557046 + -129.826539 -5.593064 -108.939804 12.27292 -104.929873 15.423285 -126.374111 + -2.557046 -129.826539"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1835.061.2017171194704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1835.061.2017171194704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1835.061.2017171194704.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1835.061.2017272131417.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1840.061.2017171194812.hdf","time_start":"2000-02-24T18:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071921","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T18:45:00.000Z","id":"G1462754260-LAADS","original_format":"ECHO10","granule_size":"150.227638244629","browse_flag":true,"polygons":[["-20.18133 + -134.584393 -23.593672 -112.068931 -5.52775 -108.860332 -2.435485 -129.856299 + -20.18133 -134.584393"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1840.061.2017171194812.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1840.061.2017171194812.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1840.061.2017171194812.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1840.061.2017272131406.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1845.061.2017171194815.hdf","time_start":"2000-02-24T18:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071922","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T18:50:00.000Z","id":"G1462754263-LAADS","original_format":"ECHO10","granule_size":"152.781425476074","browse_flag":true,"polygons":[["-37.457747 + -141.630024 -41.69949 -114.311183 -23.422565 -111.737499 -20.091693 -134.55941 + -37.457747 -141.630024"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1845.061.2017171194815.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1845.061.2017171194815.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1845.061.2017171194815.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1845.061.2017272132124.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1850.061.2017171194603.hdf","time_start":"2000-02-24T18:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071266","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T18:55:00.000Z","id":"G1462753933-LAADS","original_format":"ECHO10","granule_size":"156.939100265503","browse_flag":true,"polygons":[["-53.607334 + -153.778405 -59.6197 -115.245637 -41.38271 -113.77362 -37.384177 -141.554047 + -53.607334 -153.778405"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1850.061.2017171194603.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1850.061.2017171194603.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1850.061.2017171194603.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1850.061.2017272132415.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1855.061.2017171194729.hdf","time_start":"2000-02-24T18:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071923","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T19:00:00.000Z","id":"G1462754264-LAADS","original_format":"ECHO10","granule_size":"162.632507324219","browse_flag":true,"polygons":[["-66.733501 + -179.697854 -77.331275 -110.921939 -59.169277 -114.484816 -53.60375 -153.5098 + -66.733501 -179.697854"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1855.061.2017171194729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1855.061.2017171194729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1855.061.2017171194729.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1855.061.2017272132900.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1900.061.2017171194636.hdf","time_start":"2000-02-24T19:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071924","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T19:05:00.000Z","id":"G1462754262-LAADS","original_format":"ECHO10","granule_size":"139.54125213623","browse_flag":true,"polygons":[["-69.95191 + 130.538395 -84.004658 28.848265 -76.763524 -109.724152 -66.899583 -179.166411 + -69.95191 130.538395"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1900.061.2017171194636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1900.061.2017171194636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1900.061.2017171194636.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1900.061.2017272131403.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1905.061.2017171194218.hdf","time_start":"2000-02-24T19:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070585","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T19:10:00.000Z","id":"G1462753830-LAADS","original_format":"ECHO10","granule_size":"27.450982093811","browse_flag":true,"polygons":[["-59.973555 + 93.575542 -66.67489 45.422142 -84.293826 23.091034 -70.377944 130.423957 -59.973555 + 93.575542"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1905.061.2017171194218.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1905.061.2017171194218.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1905.061.2017171194218.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1905.061.2017272130039.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1950.061.2017171194541.hdf","time_start":"2000-02-24T19:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071267","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T19:55:00.000Z","id":"G1462753940-LAADS","original_format":"ECHO10","granule_size":"18.6811656951904","browse_flag":true,"polygons":[["82.181987 + -156.180039 69.627673 -68.022062 68.275628 -15.652728 78.699729 58.970309 + 82.181987 -156.180039"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1950.061.2017171194541.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1950.061.2017171194541.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1950.061.2017171194541.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1950.061.2017272131401.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.1955.061.2017171194546.hdf","time_start":"2000-02-24T19:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071925","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T20:00:00.000Z","id":"G1462754266-LAADS","original_format":"ECHO10","granule_size":"139.137192726135","browse_flag":true,"polygons":[["64.603299 + -146.248815 58.42711 -101.940312 69.997126 -68.219008 82.564434 -159.980778 + 64.603299 -146.248815"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1955.061.2017171194546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.1955.061.2017171194546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.1955.061.2017171194546.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.1955.061.2017272131559.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2000.061.2017171194844.hdf","time_start":"2000-02-24T20:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071611","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T20:05:00.000Z","id":"G1462754100-LAADS","original_format":"ECHO10","granule_size":"165.923831939697","browse_flag":true,"polygons":[["46.811977 + -146.77991 42.764113 -116.942679 58.725274 -102.507962 65.091425 -147.02921 + 46.811977 -146.77991"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2000.061.2017171194844.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2000.061.2017171194844.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2000.061.2017171194844.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2000.061.2017272133311.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2005.061.2017171194603.hdf","time_start":"2000-02-24T20:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071612","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T20:10:00.000Z","id":"G1462754102-LAADS","original_format":"ECHO10","granule_size":"164.202847480774","browse_flag":true,"polygons":[["28.989454 + -148.836214 25.766257 -125.136726 42.981681 -117.433922 47.261655 -147.090925 + 28.989454 -148.836214"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2005.061.2017171194603.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2005.061.2017171194603.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2005.061.2017171194603.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2005.061.2017272134621.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2010.061.2017171194742.hdf","time_start":"2000-02-24T20:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070933","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T20:15:00.000Z","id":"G1462753870-LAADS","original_format":"ECHO10","granule_size":"160.156826019287","browse_flag":true,"polygons":[["11.198577 + -151.721092 8.217699 -130.495547 25.910501 -125.43788 29.348261 -148.988228 + 11.198577 -151.721092"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2010.061.2017171194742.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2010.061.2017171194742.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2010.061.2017171194742.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2010.061.2017272135142.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2015.061.2017171194318.hdf","time_start":"2000-02-24T20:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070586","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T20:20:00.000Z","id":"G1462753828-LAADS","original_format":"ECHO10","granule_size":"150.016515731812","browse_flag":true,"polygons":[["-6.497036 + -155.479499 -9.584864 -134.46093 8.322073 -130.665862 11.430057 -151.791575 + -6.497036 -155.479499"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2015.061.2017171194318.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2015.061.2017171194318.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2015.061.2017171194318.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2015.061.2017272134241.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2020.061.2017171195141.hdf","time_start":"2000-02-24T20:20:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071268","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T20:25:00.000Z","id":"G1462753937-LAADS","original_format":"ECHO10","granule_size":"155.102347373962","browse_flag":true,"polygons":[["-24.068814 + -160.613528 -27.61767 -137.366083 -9.517474 -134.300941 -6.398571 -155.496503 + -24.068814 -160.613528"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2020.061.2017171195141.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2020.061.2017171195141.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2020.061.2017171195141.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2020.061.2017272133440.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2025.061.2017171195913.hdf","time_start":"2000-02-24T20:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071926","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T20:30:00.000Z","id":"G1462754261-LAADS","original_format":"ECHO10","granule_size":"162.614263534546","browse_flag":true,"polygons":[["-41.100767 + -168.407182 -45.619005 -139.384859 -27.414465 -136.994765 -23.980472 -160.58573 + -41.100767 -168.407182"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2025.061.2017171195913.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2025.061.2017171195913.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2025.061.2017171195913.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2025.061.2017272134021.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2030.061.2017171194736.hdf","time_start":"2000-02-24T20:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070934","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T20:35:00.000Z","id":"G1462753867-LAADS","original_format":"ECHO10","granule_size":"168.940041542053","browse_flag":true,"polygons":[["-56.930724 + 177.427896 -63.599323 -139.812036 -45.272578 -138.78811 -41.037312 -168.298976 + -56.930724 177.427896"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2030.061.2017171194736.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2030.061.2017171194736.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2030.061.2017171194736.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2030.061.2017272135040.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2035.061.2017171194607.hdf","time_start":"2000-02-24T20:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071269","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T20:40:00.000Z","id":"G1462753934-LAADS","original_format":"ECHO10","granule_size":"161.447695732117","browse_flag":true,"polygons":[["-68.674507 + 146.221825 -81.180173 -130.81215 -63.119313 -138.956097 -56.953389 177.756066 + -68.674507 146.221825"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2035.061.2017171194607.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2035.061.2017171194607.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2035.061.2017171194607.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2035.061.2017272134130.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2040.061.2017171194304.hdf","time_start":"2000-02-24T20:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070935","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T20:45:00.000Z","id":"G1462753869-LAADS","original_format":"ECHO10","granule_size":"114.689721107483","browse_flag":true,"polygons":[["-68.609663 + 95.026238 -80.276292 13.753118 -80.584279 -129.63799 -68.915466 146.763457 + -68.609663 95.026238"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2040.061.2017171194304.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2040.061.2017171194304.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2040.061.2017171194304.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2040.061.2017272132229.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2130.061.2017171194454.hdf","time_start":"2000-02-24T21:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071270","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T21:35:00.000Z","id":"G1462753938-LAADS","original_format":"ECHO10","granule_size":"38.4520721435547","browse_flag":true,"polygons":[["78.327317 + -175.413468 67.895585 -102.905394 70.009556 -50.72084 82.492933 41.203194 + 78.327317 -175.413468"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2130.061.2017171194454.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2130.061.2017171194454.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2130.061.2017171194454.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2130.061.2017272131413.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2135.061.2017171194717.hdf","time_start":"2000-02-24T21:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071613","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T21:40:00.000Z","id":"G1462754101-LAADS","original_format":"ECHO10","granule_size":"151.185940742493","browse_flag":true,"polygons":[["60.638193 + -170.849855 55.133764 -131.025116 68.25406 -103.266315 78.772669 -177.658934 + 60.638193 -170.849855"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2135.061.2017171194717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2135.061.2017171194717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2135.061.2017171194717.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2135.061.2017272132025.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2140.061.2017171194527.hdf","time_start":"2000-02-24T21:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070936","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T21:45:00.000Z","id":"G1462753868-LAADS","original_format":"ECHO10","granule_size":"154.780860900879","browse_flag":true,"polygons":[["42.833097 + -171.869448 39.039621 -143.858243 55.40948 -131.579857 61.124456 -171.455065 + 42.833097 -171.869448"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2140.061.2017171194527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2140.061.2017171194527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2140.061.2017171194527.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2140.061.2017272135342.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2145.061.2017171194551.hdf","time_start":"2000-02-24T21:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071271","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T21:50:00.000Z","id":"G1462753935-LAADS","original_format":"ECHO10","granule_size":"152.840938568115","browse_flag":true,"polygons":[["25.015256 + -174.131669 21.877131 -151.208006 39.235697 -144.296796 43.265345 -172.132473 + 25.015256 -174.131669"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2145.061.2017171194551.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2145.061.2017171194551.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2145.061.2017171194551.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2145.061.2017272134447.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2150.061.2017171194715.hdf","time_start":"2000-02-24T21:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071272","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T21:55:00.000Z","id":"G1462753939-LAADS","original_format":"ECHO10","granule_size":"150.640625953674","browse_flag":true,"polygons":[["7.236749 + -177.194496 4.259963 -156.20077 22.015584 -151.50153 25.345938 -174.262002 + 7.236749 -177.194496"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2150.061.2017171194715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2150.061.2017171194715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2150.061.2017171194715.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2150.061.2017272133843.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2155.061.2017171194539.hdf","time_start":"2000-02-24T21:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071614","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T22:00:00.000Z","id":"G1462754103-LAADS","original_format":"ECHO10","granule_size":"150.545469284058","browse_flag":true,"polygons":[["-10.44953 + 178.799099 -13.608348 -159.914344 4.352001 -156.306758 7.437247 -177.251964 + -10.44953 178.799099"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2155.061.2017171194539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2155.061.2017171194539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2155.061.2017171194539.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2155.061.2017272132821.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2200.061.2017171194535.hdf","time_start":"2000-02-24T22:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071273","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T22:05:00.000Z","id":"G1462753941-LAADS","original_format":"ECHO10","granule_size":"150.27490901947","browse_flag":true,"polygons":[["-27.935963 + 173.235775 -31.643934 -162.623303 -13.513363 -159.69788 -10.354352 178.800643 + -27.935963 173.235775"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2200.061.2017171194535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2200.061.2017171194535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2200.061.2017171194535.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2200.061.2017272132903.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2205.061.2017171194512.hdf","time_start":"2000-02-24T22:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071274","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T22:10:00.000Z","id":"G1462753942-LAADS","original_format":"ECHO10","granule_size":"155.991891860962","browse_flag":true,"polygons":[["-44.774442 + 164.489249 -49.626987 -164.400137 -31.408591 -162.205454 -27.848962 173.266915 + -44.774442 164.489249"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2205.061.2017171194512.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2205.061.2017171194512.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2205.061.2017171194512.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2205.061.2017272134303.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2210.061.2017171194514.hdf","time_start":"2000-02-24T22:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071275","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T22:15:00.000Z","id":"G1462753946-LAADS","original_format":"ECHO10","granule_size":"167.637389183044","browse_flag":true,"polygons":[["-60.017993 + 147.946343 -67.481151 -164.119771 -49.249517 -163.756996 -44.723508 164.633637 + -60.017993 147.946343"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2210.061.2017171194514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2210.061.2017171194514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2210.061.2017171194514.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2210.061.2017272134509.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2215.061.2017171194446.hdf","time_start":"2000-02-24T22:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070937","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T22:20:00.000Z","id":"G1462753873-LAADS","original_format":"ECHO10","granule_size":"151.296957015991","browse_flag":true,"polygons":[["-69.999051 + 110.654598 -84.833748 -142.704214 -66.975508 -163.125844 -60.073261 148.339618 + -69.999051 110.654598"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2215.061.2017171194446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2215.061.2017171194446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2215.061.2017171194446.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2215.061.2017272133315.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2220.061.2017171194455.hdf","time_start":"2000-02-24T22:20:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070938","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T22:25:00.000Z","id":"G1462753871-LAADS","original_format":"ECHO10","granule_size":"88.1708059310913","browse_flag":true,"polygons":[["-66.660263 + 60.964931 -76.403741 -7.095511 -84.207071 -142.481949 -70.327517 111.127365 + -66.660263 60.964931"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2220.061.2017171194455.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2220.061.2017171194455.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2220.061.2017171194455.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2220.061.2017272131658.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2310.061.2017171194407.hdf","time_start":"2000-02-24T23:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070939","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-24T23:15:00.000Z","id":"G1462753872-LAADS","original_format":"ECHO10","granule_size":"62.3856363296509","browse_flag":true,"polygons":[["74.406385 + 162.315655 65.613931 -136.16624 71.03289 -87.270168 85.912561 37.177096 74.406385 + 162.315655"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2310.061.2017171194407.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2310.061.2017171194407.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2310.061.2017171194407.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2310.061.2017272132335.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2315.061.2017171194655.hdf","time_start":"2000-02-24T23:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071927","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T23:20:00.000Z","id":"G1462754267-LAADS","original_format":"ECHO10","granule_size":"154.274304389954","browse_flag":true,"polygons":[["56.66395 + 164.386889 51.700466 -159.425427 65.967347 -136.658374 74.878703 160.800706 + 56.66395 164.386889"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2315.061.2017171194655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2315.061.2017171194655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2315.061.2017171194655.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2315.061.2017272132754.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2320.061.2017171194345.hdf","time_start":"2000-02-24T23:20:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070587","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T23:25:00.000Z","id":"G1462753834-LAADS","original_format":"ECHO10","granule_size":"161.609660148621","browse_flag":true,"polygons":[["38.853934 + 162.983959 35.266821 -170.533657 51.953341 -159.953302 57.144276 163.894596 + 38.853934 162.983959"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2320.061.2017171194345.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2320.061.2017171194345.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2320.061.2017171194345.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2320.061.2017272134626.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2325.061.2017171194642.hdf","time_start":"2000-02-24T23:25:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071615","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T23:30:00.000Z","id":"G1462754104-LAADS","original_format":"ECHO10","granule_size":"153.365759849548","browse_flag":true,"polygons":[["21.0371 + 160.534133 17.969643 -177.194335 35.448382 -170.939787 39.265401 162.760901 + 21.0371 160.534133"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2325.061.2017171194642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2325.061.2017171194642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2325.061.2017171194642.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2325.061.2017272134459.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2330.061.2017171194639.hdf","time_start":"2000-02-24T23:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071276","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T23:35:00.000Z","id":"G1462753944-LAADS","original_format":"ECHO10","granule_size":"145.579494476318","browse_flag":true,"polygons":[["3.278286 + 157.286431 0.289467 178.154866 18.097274 -177.453408 21.341021 160.422441 + 3.278286 157.286431"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2330.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2330.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2330.061.2017171194639.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2330.061.2017272132734.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2335.061.2017171194413.hdf","time_start":"2000-02-24T23:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070940","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T23:40:00.000Z","id":"G1462753874-LAADS","original_format":"ECHO10","granule_size":"157.379514694214","browse_flag":true,"polygons":[["-14.390368 + 153.003049 -17.638497 174.687324 0.36902 178.125394 3.447464 157.240839 -14.390368 + 153.003049"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2335.061.2017171194413.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2335.061.2017171194413.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2335.061.2017171194413.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2335.061.2017272133855.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2340.061.2017171194632.hdf","time_start":"2000-02-24T23:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071928","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T23:45:00.000Z","id":"G1462754268-LAADS","original_format":"ECHO10","granule_size":"157.955037117004","browse_flag":true,"polygons":[["-31.775593 + 146.937635 -35.669418 172.164009 -17.512882 174.94829 -14.298846 153.022942 + -31.775593 146.937635"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2340.061.2017171194632.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2340.061.2017171194632.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2340.061.2017171194632.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2340.061.2017272133337.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2345.061.2017171194525.hdf","time_start":"2000-02-24T23:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071277","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T23:50:00.000Z","id":"G1462753943-LAADS","original_format":"ECHO10","granule_size":"147.595872879028","browse_flag":true,"polygons":[["-48.379643 + 137.033592 -53.630862 170.672231 -35.401999 172.630273 -31.691407 146.976949 + -48.379643 137.033592"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2345.061.2017171194525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2345.061.2017171194525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2345.061.2017171194525.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2345.061.2017272133618.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2350.061.2017171194452.hdf","time_start":"2000-02-24T23:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071278","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-24T23:55:00.000Z","id":"G1462753945-LAADS","original_format":"ECHO10","granule_size":"159.3859167099","browse_flag":true,"polygons":[["-62.948792 + 117.353998 -71.439181 172.024657 -53.222615 171.377981 -48.342842 137.216261 + -62.948792 117.353998"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2350.061.2017171194452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2350.061.2017171194452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2350.061.2017171194452.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2350.061.2017272133155.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000055.2355.061.2017171194832.hdf","time_start":"2000-02-24T23:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072210","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T00:00:00.000Z","id":"G1462754500-LAADS","original_format":"ECHO10","granule_size":"140.923770904541","browse_flag":true,"polygons":[["-70.572667 + 74.308047 -87.342221 -120.771688 -70.912982 172.980272 -63.043197 117.811662 + -70.572667 74.308047"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2355.061.2017171194832.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000055.2355.061.2017171194832.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/055/MOD02QKM.A2000055.2355.061.2017171194832.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/055/MOBRGB.A2000055.2355.061.2017272131352.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0000.061.2017171194352.hdf","time_start":"2000-02-25T00:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070941","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T00:05:00.000Z","id":"G1462756756-LAADS","original_format":"ECHO10","granule_size":"61.78404712677","browse_flag":true,"polygons":[["-64.192183 + 28.517204 -72.489106 -30.062127 -86.796437 -128.441346 -70.928443 74.587737 + -64.192183 28.517204"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0000.061.2017171194352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0000.061.2017171194352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0000.061.2017171194352.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0000.061.2017272131441.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0050.061.2017171194351.hdf","time_start":"2000-02-25T00:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071279","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T00:55:00.000Z","id":"G1462756884-LAADS","original_format":"ECHO10","granule_size":"87.713321685791","browse_flag":true,"polygons":[["70.457122 + 138.814707 62.92468 -167.927347 71.239422 -124.300507 87.053697 76.817737 + 70.457122 138.814707"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0050.061.2017171194351.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0050.061.2017171194351.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0050.061.2017171194351.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0050.061.2017272131656.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0055.061.2017171194529.hdf","time_start":"2000-02-25T00:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071280","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T01:00:00.000Z","id":"G1462756883-LAADS","original_format":"ECHO10","granule_size":"162.353729248047","browse_flag":true,"polygons":[["52.68924 + 139.491201 48.150915 172.743285 63.253557 -168.467765 70.943745 137.710818 + 52.68924 139.491201"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0055.061.2017171194529.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0055.061.2017171194529.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0055.061.2017171194529.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0055.061.2017272133149.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0100.061.2017171194534.hdf","time_start":"2000-02-25T01:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071616","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T01:05:00.000Z","id":"G1462756921-LAADS","original_format":"ECHO10","granule_size":"167.026740074158","browse_flag":true,"polygons":[["34.873543 + 137.799027 31.454922 162.997804 48.389472 172.228011 53.158158 139.099936 + 34.873543 137.799027"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0100.061.2017171194534.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0100.061.2017171194534.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0100.061.2017171194534.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0100.061.2017272134833.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0105.061.2017171194532.hdf","time_start":"2000-02-25T01:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070588","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T01:10:00.000Z","id":"G1462756606-LAADS","original_format":"ECHO10","granule_size":"160.182405471802","browse_flag":true,"polygons":[["17.063917 + 135.158814 14.043949 156.914289 31.621807 162.622774 35.261718 137.595765 + 17.063917 135.158814"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0105.061.2017171194532.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0105.061.2017171194532.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0105.061.2017171194532.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0105.061.2017272134018.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0110.061.2017171194623.hdf","time_start":"2000-02-25T01:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070942","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T01:15:00.000Z","id":"G1462756758-LAADS","original_format":"ECHO10","granule_size":"147.078868865967","browse_flag":true,"polygons":[["-0.671825 + 131.71642 -3.688525 152.564259 14.16194 156.689797 17.33796 135.064046 -0.671825 + 131.71642"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0110.061.2017171194623.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0110.061.2017171194623.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0110.061.2017171194623.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0110.061.2017272133110.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0115.061.2017171194619.hdf","time_start":"2000-02-25T01:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071281","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T01:20:00.000Z","id":"G1462756881-LAADS","original_format":"ECHO10","granule_size":"166.504801750183","browse_flag":true,"polygons":[["-18.315065 + 127.128454 -21.668297 149.33002 -3.61957 152.611118 -0.535886 131.688168 -18.315065 + 127.128454"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0115.061.2017171194619.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0115.061.2017171194619.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0115.061.2017171194619.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0115.061.2017272133746.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0120.061.2017171195903.hdf","time_start":"2000-02-25T01:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071929","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T01:25:00.000Z","id":"G1462756945-LAADS","original_format":"ECHO10","granule_size":"163.390635490417","browse_flag":true,"polygons":[["-35.576761 + 120.454038 -39.691427 147.000578 -21.511944 149.636198 -18.225433 127.150763 + -35.576761 120.454038"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0120.061.2017171195903.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0120.061.2017171195903.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0120.061.2017171195903.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0120.061.2017272132944.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0125.061.2017171194708.hdf","time_start":"2000-02-25T01:25:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070943","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T01:30:00.000Z","id":"G1462756766-LAADS","original_format":"ECHO10","granule_size":"163.596527099609","browse_flag":true,"polygons":[["-51.891957 + 109.125838 -57.626363 145.857597 -39.391165 147.514789 -35.496282 120.506576 + -51.891957 109.125838"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0125.061.2017171194708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0125.061.2017171194708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0125.061.2017171194708.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0125.061.2017272134432.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0130.061.2017171194859.hdf","time_start":"2000-02-25T01:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072211","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T01:35:00.000Z","id":"G1462756961-LAADS","original_format":"ECHO10","granule_size":"154.076403617859","browse_flag":true,"polygons":[["-65.570429 + 85.513602 -75.38134 148.766592 -57.191163 146.542927 -51.876404 109.365068 + -65.570429 85.513602"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0130.061.2017171194859.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0130.061.2017171194859.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0130.061.2017171194859.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0130.061.2017272133250.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0135.061.2017171194622.hdf","time_start":"2000-02-25T01:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071617","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T01:40:00.000Z","id":"G1462756924-LAADS","original_format":"ECHO10","granule_size":"136.479437828064","browse_flag":true,"polygons":[["-70.357827 + 37.488578 -85.695633 -81.53138 -74.820713 150.077491 -65.708873 86.032922 + -70.357827 37.488578"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0135.061.2017171194622.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0135.061.2017171194622.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0135.061.2017171194622.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0135.061.2017272131614.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0140.061.2017171194326.hdf","time_start":"2000-02-25T01:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071618","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T01:45:00.000Z","id":"G1462756925-LAADS","original_format":"ECHO10","granule_size":"37.9867134094238","browse_flag":true,"polygons":[["-61.459514 + -2.4889 -68.645517 -53.779343 -85.8453 -90.07505 -70.751567 37.52166 -61.459514 + -2.4889"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0140.061.2017171194326.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0140.061.2017171194326.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0140.061.2017171194326.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0140.061.2017272131526.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0230.061.2017171194637.hdf","time_start":"2000-02-25T02:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071282","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T02:35:00.000Z","id":"G1462756888-LAADS","original_format":"ECHO10","granule_size":"120.979226112366","browse_flag":true,"polygons":[["66.59184 + 114.699369 60.006971 161.69484 70.607606 -161.329063 84.366056 93.771355 66.59184 + 114.699369"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0230.061.2017171194637.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0230.061.2017171194637.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0230.061.2017171194637.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0230.061.2017272132345.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0235.061.2017171194533.hdf","time_start":"2000-02-25T02:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070944","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T02:40:00.000Z","id":"G1462756763-LAADS","original_format":"ECHO10","granule_size":"164.189849853516","browse_flag":true,"polygons":[["48.716587 + 114.518458 44.524834 145.340666 60.315264 161.131836 67.080661 113.855277 + 48.716587 114.518458"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0235.061.2017171194533.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0235.061.2017171194533.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0235.061.2017171194533.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0235.061.2017272132631.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0240.061.2017171194420.hdf","time_start":"2000-02-25T02:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070945","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T02:45:00.000Z","id":"G1462756764-LAADS","original_format":"ECHO10","granule_size":"161.074696540833","browse_flag":true,"polygons":[["30.900357 + 112.543061 27.61355 136.702598 44.74613 144.852546 49.171493 114.154504 30.900357 + 112.543061"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0240.061.2017171194420.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0240.061.2017171194420.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0240.061.2017171194420.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0240.061.2017272132909.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0245.061.2017171194600.hdf","time_start":"2000-02-25T02:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070946","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T02:50:00.000Z","id":"G1462756760-LAADS","original_format":"ECHO10","granule_size":"163.135328292847","browse_flag":true,"polygons":[["13.098348 + 109.742234 10.109669 131.109843 27.768939 136.360752 31.266289 112.380241 + 13.098348 109.742234"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0245.061.2017171194600.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0245.061.2017171194600.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0245.061.2017171194600.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0245.061.2017272133248.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0250.061.2017171194535.hdf","time_start":"2000-02-25T02:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071283","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T02:55:00.000Z","id":"G1462756892-LAADS","original_format":"ECHO10","granule_size":"162.952032089233","browse_flag":true,"polygons":[["-4.604536 + 106.091432 -7.665288 127.026906 10.218495 130.920455 13.344754 109.663431 + -4.604536 106.091432"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0250.061.2017171194535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0250.061.2017171194535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0250.061.2017171194535.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0250.061.2017272133814.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0255.061.2017171194553.hdf","time_start":"2000-02-25T02:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071284","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T03:00:00.000Z","id":"G1462756889-LAADS","original_format":"ECHO10","granule_size":"161.229743003845","browse_flag":true,"polygons":[["-22.20989 + 101.144219 -25.689724 124.006877 -7.604032 127.141719 -4.500628 106.068752 + -22.20989 101.144219"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0255.061.2017171194553.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0255.061.2017171194553.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0255.061.2017171194553.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0255.061.2017272134528.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0300.061.2017171194451.hdf","time_start":"2000-02-25T03:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071285","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T03:05:00.000Z","id":"G1462756885-LAADS","original_format":"ECHO10","granule_size":"165.499859809875","browse_flag":true,"polygons":[["-39.322622 + 93.744416 -43.69892 121.89172 -25.502289 124.365896 -22.119082 101.168939 + -39.322622 93.744416"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0300.061.2017171194451.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0300.061.2017171194451.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0300.061.2017171194451.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0300.061.2017272133549.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0305.061.2017171194516.hdf","time_start":"2000-02-25T03:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071286","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T03:10:00.000Z","id":"G1462756886-LAADS","original_format":"ECHO10","granule_size":"162.414154052734","browse_flag":true,"polygons":[["-55.286124 + 80.674098 -61.606671 121.195114 -43.36835 122.455589 -39.255252 93.839695 + -55.286124 80.674098"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0305.061.2017171194516.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0305.061.2017171194516.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0305.061.2017171194516.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0305.061.2017272135055.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0310.061.2017171194526.hdf","time_start":"2000-02-25T03:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071287","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T03:15:00.000Z","id":"G1462756887-LAADS","original_format":"ECHO10","granule_size":"156.660328865051","browse_flag":true,"polygons":[["-67.77353 + 52.224602 -79.27275 127.197847 -61.144807 121.925318 -55.295325 80.972744 + -67.77353 52.224602"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0310.061.2017171194526.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0310.061.2017171194526.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0310.061.2017171194526.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0310.061.2017272133238.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0315.061.2017171194519.hdf","time_start":"2000-02-25T03:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070947","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T03:20:00.000Z","id":"G1462756762-LAADS","original_format":"ECHO10","granule_size":"127.278304100037","browse_flag":true,"polygons":[["-69.394378 + 1.340994 -82.163992 -88.885932 -78.678947 128.72499 -67.999206 52.805866 -69.394378 + 1.340994"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0315.061.2017171194519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0315.061.2017171194519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0315.061.2017171194519.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0315.061.2017272131540.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0405.061.2017171194222.hdf","time_start":"2000-02-25T04:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070589","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T04:10:00.000Z","id":"G1462756603-LAADS","original_format":"ECHO10","granule_size":"27.3821411132812","browse_flag":true,"polygons":[["80.271126 + 83.543078 68.854343 163.086432 69.232391 -144.194427 80.607234 -61.923807 + 80.271126 83.543078"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0405.061.2017171194222.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0405.061.2017171194222.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0405.061.2017171194222.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0405.061.2017272131728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0410.061.2017171194507.hdf","time_start":"2000-02-25T04:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070948","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T04:15:00.000Z","id":"G1462756769-LAADS","original_format":"ECHO10","granule_size":"145.45923614502","browse_flag":true,"polygons":[["62.626183 + 90.225887 56.80781 132.173906 69.211617 162.810909 80.693035 80.674404 62.626183 + 90.225887"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0410.061.2017171194507.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0410.061.2017171194507.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0410.061.2017171194507.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0410.061.2017272132538.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0415.061.2017171194600.hdf","time_start":"2000-02-25T04:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071288","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T04:20:00.000Z","id":"G1462756891-LAADS","original_format":"ECHO10","granule_size":"162.76408290863","browse_flag":true,"polygons":[["44.827711 + 89.466863 40.917311 118.311241 57.097411 131.602459 63.118149 89.59127 44.827711 + 89.466863"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0415.061.2017171194600.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0415.061.2017171194600.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0415.061.2017171194600.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0415.061.2017272133606.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0420.061.2017171194421.hdf","time_start":"2000-02-25T04:20:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070949","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T04:25:00.000Z","id":"G1462756765-LAADS","original_format":"ECHO10","granule_size":"166.226761817932","browse_flag":true,"polygons":[["26.920958 + 87.277696 23.744356 110.542709 41.119872 117.861094 45.268095 89.162203 26.920958 + 87.277696"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0420.061.2017171194421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0420.061.2017171194421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0420.061.2017171194421.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0420.061.2017272133358.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0425.061.2017171194433.hdf","time_start":"2000-02-25T04:25:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070950","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T04:30:00.000Z","id":"G1462756768-LAADS","original_format":"ECHO10","granule_size":"153.044100761414","browse_flag":true,"polygons":[["9.137675 + 84.284757 6.160026 105.375799 23.886875 110.23871 27.263825 87.11965 9.137675 + 84.284757"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0425.061.2017171194433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0425.061.2017171194433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0425.061.2017171194433.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0425.061.2017272133745.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0430.061.2017171194303.hdf","time_start":"2000-02-25T04:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070951","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T04:35:00.000Z","id":"G1462756770-LAADS","original_format":"ECHO10","granule_size":"156.535620689392","browse_flag":true,"polygons":[["-8.554243 + 80.398821 -11.676978 101.542436 6.258368 105.236672 9.352751 84.21872 -8.554243 + 80.398821"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0430.061.2017171194303.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0430.061.2017171194303.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0430.061.2017171194303.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0430.061.2017272133617.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0435.061.2017171194316.hdf","time_start":"2000-02-25T04:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070952","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T04:40:00.000Z","id":"G1462756767-LAADS","original_format":"ECHO10","granule_size":"158.311543464661","browse_flag":true,"polygons":[["-26.083747 + 75.053188 -29.712699 98.748948 -11.596589 101.740168 -8.457886 80.394588 -26.083747 + 75.053188"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0435.061.2017171194316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0435.061.2017171194316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0435.061.2017171194316.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0435.061.2017272133926.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0440.061.2017171194327.hdf","time_start":"2000-02-25T04:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070953","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T04:45:00.000Z","id":"G1462756772-LAADS","original_format":"ECHO10","granule_size":"156.112901687622","browse_flag":true,"polygons":[["-43.018419 + 66.785531 -47.703738 96.850652 -29.491926 99.141392 -25.995141 75.080527 -43.018419 + 66.785531"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0440.061.2017171194327.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0440.061.2017171194327.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0440.061.2017171194327.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0440.061.2017272133738.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0445.061.2017171194309.hdf","time_start":"2000-02-25T04:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070954","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T04:50:00.000Z","id":"G1462756771-LAADS","original_format":"ECHO10","granule_size":"166.654847145081","browse_flag":true,"polygons":[["-58.52694 + 51.509136 -65.57585 96.761492 -47.341224 97.467568 -42.962633 66.915741 -58.52694 + 51.509136"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0445.061.2017171194309.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0445.061.2017171194309.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0445.061.2017171194309.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0445.061.2017272134355.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0450.061.2017171194404.hdf","time_start":"2000-02-25T04:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071289","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T04:55:00.000Z","id":"G1462756890-LAADS","original_format":"ECHO10","granule_size":"148.461805343628","browse_flag":true,"polygons":[["-69.422148 + 17.38515 -83.060716 109.832358 -65.088052 97.550038 -58.565175 51.869778 -69.422148 + 17.38515"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0450.061.2017171194404.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0450.061.2017171194404.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0450.061.2017171194404.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0450.061.2017272132511.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0455.061.2017171194255.hdf","time_start":"2000-02-25T04:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070590","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T05:00:00.000Z","id":"G1462756604-LAADS","original_format":"ECHO10","granule_size":"100.11944103241","browse_flag":true,"polygons":[["-67.67928 + -33.37855 -78.359584 -107.664235 -82.426032 111.342614 -69.671838 17.890812 + -67.67928 -33.37855"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0455.061.2017171194255.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0455.061.2017171194255.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0455.061.2017171194255.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0455.061.2017272131359.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0950.061.2017171194246.hdf","time_start":"2000-02-25T09:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070591","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T09:55:00.000Z","id":"G1462756605-LAADS","original_format":"ECHO10","granule_size":"66.9224462509155","browse_flag":true,"polygons":[["-70.079924 + -92.249875 -84.124234 165.067828 -85.43699 48.354075 -70.580075 -65.585004 + -70.079924 -92.249875"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0950.061.2017171194246.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0950.061.2017171194246.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0950.061.2017171194246.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0950.061.2017272131415.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.0955.061.2017171194407.hdf","time_start":"2000-02-25T09:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071619","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T10:00:00.000Z","id":"G1462756930-LAADS","original_format":"ECHO10","granule_size":"26.4926128387451","browse_flag":true,"polygons":[["-59.895563 + -128.906976 -66.622897 -177.06365 -84.242767 160.908501 -70.310683 -92.193061 + -59.895563 -128.906976"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0955.061.2017171194407.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.0955.061.2017171194407.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.0955.061.2017171194407.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.0955.061.2017272131631.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1040.061.2017171194743.hdf","time_start":"2000-02-25T10:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070955","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T10:45:00.000Z","id":"G1462756777-LAADS","original_format":"ECHO10","granule_size":"19.6532278060913","browse_flag":true,"polygons":[["82.121794 + -18.515412 69.60516 69.309148 68.308101 121.702964 78.762219 -163.46717 82.121794 + -18.515412"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1040.061.2017171194743.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1040.061.2017171194743.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1040.061.2017171194743.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1040.061.2017272131450.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1045.061.2017171194348.hdf","time_start":"2000-02-25T10:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070592","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T10:50:00.000Z","id":"G1462756607-LAADS","original_format":"ECHO10","granule_size":"146.68185710907","browse_flag":true,"polygons":[["64.539373 + -8.76043 58.372914 35.498716 69.969765 69.117155 82.50123 -22.370183 64.539373 + -8.76043"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1045.061.2017171194348.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1045.061.2017171194348.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1045.061.2017171194348.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1045.061.2017272132648.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1050.061.2017171195440.hdf","time_start":"2000-02-25T10:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070956","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T10:55:00.000Z","id":"G1462756774-LAADS","original_format":"ECHO10","granule_size":"161.080160140991","browse_flag":true,"polygons":[["46.747641 + -9.276206 42.702952 20.536047 58.669646 34.934049 65.028996 -9.511985 46.747641 + -9.276206"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1050.061.2017171195440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1050.061.2017171195440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1050.061.2017171195440.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1050.061.2017272133512.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1055.061.2017171194343.hdf","time_start":"2000-02-25T10:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070593","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T11:00:00.000Z","id":"G1462756608-LAADS","original_format":"ECHO10","granule_size":"147.302468299866","browse_flag":true,"polygons":[["28.927255 + -11.340062 25.705017 12.350016 42.922134 20.039377 47.197927 -9.591205 28.927255 + -11.340062"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1055.061.2017171194343.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1055.061.2017171194343.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1055.061.2017171194343.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1055.061.2017272132035.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1100.061.2017171194732.hdf","time_start":"2000-02-25T11:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071930","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T11:05:00.000Z","id":"G1462756941-LAADS","original_format":"ECHO10","granule_size":"160.251832008362","browse_flag":true,"polygons":[["11.135114 + -14.22326 8.158185 6.982761 25.852119 12.0337 29.286408 -11.48614 11.135114 + -14.22326"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1100.061.2017171194732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1100.061.2017171194732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1100.061.2017171194732.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1100.061.2017272131912.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1105.061.2017171194639.hdf","time_start":"2000-02-25T11:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071931","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T11:10:00.000Z","id":"G1462756938-LAADS","original_format":"ECHO10","granule_size":"88.1288423538208","browse_flag":true,"polygons":[["1.403504 + -16.258494 -1.648844 4.731083 8.260592 6.824363 11.356835 -14.196879 1.403504 + -16.258494"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1105.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1105.061.2017171194639.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1105.061.2017171194639.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1105.061.2017272132305.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1405.061.2017171194342.hdf","time_start":"2000-02-25T14:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071620","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T14:10:00.000Z","id":"G1462756923-LAADS","original_format":"ECHO10","granule_size":"157.355637550354","browse_flag":true,"polygons":[["56.600185 + -58.119067 51.64014 -21.960675 65.919726 0.734272 74.812959 -61.678776 56.600185 + -58.119067"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1405.061.2017171194342.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1405.061.2017171194342.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1405.061.2017171194342.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1405.061.2017272133852.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1410.061.2017171194317.hdf","time_start":"2000-02-25T14:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070957","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T14:15:00.000Z","id":"G1462756775-LAADS","original_format":"ECHO10","granule_size":"165.003583908081","browse_flag":true,"polygons":[["38.789964 + -59.521253 35.205835 -33.054104 51.896016 -22.498366 57.079626 -58.606345 + 38.789964 -59.521253"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1410.061.2017171194317.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1410.061.2017171194317.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1410.061.2017171194317.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1410.061.2017272135119.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1415.061.2017171194520.hdf","time_start":"2000-02-25T14:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070958","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T14:20:00.000Z","id":"G1462756773-LAADS","original_format":"ECHO10","granule_size":"161.860825538635","browse_flag":true,"polygons":[["20.97476 + -61.975545 17.908324 -39.706259 35.387899 -33.46214 39.201914 -59.747379 20.97476 + -61.975545"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1415.061.2017171194520.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1415.061.2017171194520.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1415.061.2017171194520.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1415.061.2017272135029.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1420.061.2017171194511.hdf","time_start":"2000-02-25T14:20:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071290","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T14:25:00.000Z","id":"G1462756894-LAADS","original_format":"ECHO10","granule_size":"157.652504920959","browse_flag":true,"polygons":[["3.216031 + -65.218345 0.227397 -44.349144 18.035097 -39.962338 21.277542 -62.079391 3.216031 + -65.218345"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1420.061.2017171194511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1420.061.2017171194511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1420.061.2017171194511.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1420.061.2017272133837.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1425.061.2017171194351.hdf","time_start":"2000-02-25T14:25:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071291","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T14:30:00.000Z","id":"G1462756895-LAADS","original_format":"ECHO10","granule_size":"169.677633285522","browse_flag":true,"polygons":[["-14.456487 + -69.47647 -17.697729 -47.832586 0.309943 -44.397187 3.380619 -65.235519 -14.456487 + -69.47647"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1425.061.2017171194351.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1425.061.2017171194351.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1425.061.2017171194351.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1425.061.2017272132859.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1430.061.2017171194312.hdf","time_start":"2000-02-25T14:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070959","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T14:35:00.000Z","id":"G1462756780-LAADS","original_format":"ECHO10","granule_size":"163.615028381348","browse_flag":true,"polygons":[["-31.835363 + -75.579526 -35.736763 -50.333231 -17.574548 -47.551731 -14.36652 -69.488325 + -31.835363 -75.579526"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1430.061.2017171194312.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1430.061.2017171194312.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1430.061.2017171194312.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1430.061.2017272132836.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1435.061.2017171194249.hdf","time_start":"2000-02-25T14:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070594","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T14:40:00.000Z","id":"G1462756612-LAADS","original_format":"ECHO10","granule_size":"159.493921279907","browse_flag":true,"polygons":[["-48.432383 + -85.510924 -53.691319 -51.823049 -35.462705 -49.869922 -31.748495 -75.54719 + -48.432383 -85.510924"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1435.061.2017171194249.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1435.061.2017171194249.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1435.061.2017171194249.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1435.061.2017272133350.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1440.061.2017171194429.hdf","time_start":"2000-02-25T14:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070595","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T14:45:00.000Z","id":"G1462756609-LAADS","original_format":"ECHO10","granule_size":"164.390314102173","browse_flag":true,"polygons":[["-62.994032 + -105.234281 -71.499972 -50.446744 -53.2835 -51.115039 -48.399333 -85.317694 + -62.994032 -105.234281"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1440.061.2017171194429.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1440.061.2017171194429.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1440.061.2017171194429.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1440.061.2017272135448.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1445.061.2017171194407.hdf","time_start":"2000-02-25T14:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070596","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T14:50:00.000Z","id":"G1462756617-LAADS","original_format":"ECHO10","granule_size":"149.132160186768","browse_flag":true,"polygons":[["-70.57748 + -148.374783 -87.356928 18.025391 -70.973617 -49.502678 -63.087773 -104.777741 + -70.57748 -148.374783"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1445.061.2017171194407.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1445.061.2017171194407.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1445.061.2017171194407.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1445.061.2017272132609.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1450.061.2017171194308.hdf","time_start":"2000-02-25T14:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070960","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T14:55:00.000Z","id":"G1462756778-LAADS","original_format":"ECHO10","granule_size":"64.2234754562378","browse_flag":true,"polygons":[["-64.132693 + 165.954711 -72.439974 107.655085 -86.872297 9.760796 -70.906542 -148.094465 + -64.132693 165.954711"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1450.061.2017171194308.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1450.061.2017171194308.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1450.061.2017171194308.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1450.061.2017272131340.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1540.061.2017171194304.hdf","time_start":"2000-02-25T15:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070961","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T15:45:00.000Z","id":"G1462756776-LAADS","original_format":"ECHO10","granule_size":"95.0771932601929","browse_flag":true,"polygons":[["70.486806 + -83.699945 62.946319 -30.376201 71.236197 13.015919 87.035957 -144.56986 70.486806 + -83.699945"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1540.061.2017171194304.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1540.061.2017171194304.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1540.061.2017171194304.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1540.061.2017272131522.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1545.061.2017171194254.hdf","time_start":"2000-02-25T15:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071621","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T15:50:00.000Z","id":"G1462756922-LAADS","original_format":"ECHO10","granule_size":"161.207900047302","browse_flag":true,"polygons":[["52.629537 + -83.019634 48.09826 -49.786747 63.273418 -30.911049 70.970127 -84.836562 52.629537 + -83.019634"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1545.061.2017171194254.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1545.061.2017171194254.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1545.061.2017171194254.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1545.061.2017272132602.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1550.061.2017171194450.hdf","time_start":"2000-02-25T15:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071622","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T15:55:00.000Z","id":"G1462756927-LAADS","original_format":"ECHO10","granule_size":"155.965327262878","browse_flag":true,"polygons":[["34.815937 + -84.715819 31.399168 -59.51499 48.336151 -50.301667 53.100009 -83.415542 34.815937 + -84.715819"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1550.061.2017171194450.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1550.061.2017171194450.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1550.061.2017171194450.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1550.061.2017272133133.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1555.061.2017171194246.hdf","time_start":"2000-02-25T15:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071292","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T16:00:00.000Z","id":"G1462756896-LAADS","original_format":"ECHO10","granule_size":"144.209403991699","browse_flag":true,"polygons":[["17.096282 + -87.335207 14.076346 -65.565679 31.567449 -59.889909 35.206132 -84.906723 + 17.096282 -87.335207"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1555.061.2017171194246.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1555.061.2017171194246.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1555.061.2017171194246.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1555.061.2017272133703.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1805.061.2017171194303.hdf","time_start":"2000-02-25T18:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071623","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T18:10:00.000Z","id":"G1462756929-LAADS","original_format":"ECHO10","granule_size":"131.056297302246","browse_flag":true,"polygons":[["-69.343884 + 138.758664 -82.135161 48.983623 -78.733393 -93.904998 -67.990285 -169.846414 + -69.343884 138.758664"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1805.061.2017171194303.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1805.061.2017171194303.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1805.061.2017171194303.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1805.061.2017272132805.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1855.061.2017171194316.hdf","time_start":"2000-02-25T18:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070597","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T19:00:00.000Z","id":"G1462756610-LAADS","original_format":"ECHO10","granule_size":"31.5537576675415","browse_flag":true,"polygons":[["80.225751 + -138.901489 68.8172 -59.509048 69.237019 -6.838126 80.656092 75.676805 80.225751 + -138.901489"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1855.061.2017171194316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1855.061.2017171194316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1855.061.2017171194316.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1855.061.2017272132329.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1900.061.2017171194642.hdf","time_start":"2000-02-25T19:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071624","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T19:05:00.000Z","id":"G1462756933-LAADS","original_format":"ECHO10","granule_size":"144.369667053223","browse_flag":true,"polygons":[["62.580178 + -132.240806 56.764081 -90.360769 69.182995 -59.79774 80.6499 -141.661343 62.580178 + -132.240806"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1900.061.2017171194642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1900.061.2017171194642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1900.061.2017171194642.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1900.061.2017272133042.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1905.061.2017171194426.hdf","time_start":"2000-02-25T19:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071293","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T19:10:00.000Z","id":"G1462756898-LAADS","original_format":"ECHO10","granule_size":"165.142088890076","browse_flag":true,"polygons":[["44.784488 + -133.066601 40.868796 -104.189968 57.0496 -90.920132 63.065443 -132.953408 + 44.784488 -133.066601"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1905.061.2017171194426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1905.061.2017171194426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1905.061.2017171194426.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1905.061.2017272133703.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1910.061.2017171194251.hdf","time_start":"2000-02-25T19:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070598","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T19:15:00.000Z","id":"G1462756611-LAADS","original_format":"ECHO10","granule_size":"164.903468132019","browse_flag":true,"polygons":[["26.960083 + -135.231196 23.790895 -111.965359 41.084889 -104.690365 45.22574 -133.353659 + 26.960083 -135.231196"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1910.061.2017171194251.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1910.061.2017171194251.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1910.061.2017171194251.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1910.061.2017272134556.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1915.061.2017171194820.hdf","time_start":"2000-02-25T19:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072212","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T19:20:00.000Z","id":"G1462756962-LAADS","original_format":"ECHO10","granule_size":"160.531156539917","browse_flag":true,"polygons":[["9.089571 + -138.219759 6.113607 -117.126536 23.926473 -112.237004 27.307027 -135.374057 + 9.089571 -138.219759"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1915.061.2017171194820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1915.061.2017171194820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1915.061.2017171194820.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1915.061.2017272134517.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1920.061.2017171194647.hdf","time_start":"2000-02-25T19:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071932","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T19:25:00.000Z","id":"G1462756939-LAADS","original_format":"ECHO10","granule_size":"152.323266983032","browse_flag":true,"polygons":[["-8.600983 + -142.105774 -11.723755 -120.962413 6.2125 -117.269965 9.30546 -138.282407 + -8.600983 -142.105774"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1920.061.2017171194647.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1920.061.2017171194647.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1920.061.2017171194647.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1920.061.2017272132521.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.1925.061.2017171194219.hdf","time_start":"2000-02-25T19:25:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070599","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T19:30:00.000Z","id":"G1462756613-LAADS","original_format":"ECHO10","granule_size":"87.7479829788208","browse_flag":true,"polygons":[["-18.816391 + -145.078919 -22.176601 -122.612417 -11.621921 -120.948852 -8.508493 -142.088823 + -18.816391 -145.078919"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1925.061.2017171194219.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.1925.061.2017171194219.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.1925.061.2017171194219.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.1925.061.2017272132819.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2035.061.2017171194235.hdf","time_start":"2000-02-25T20:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070962","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T20:40:00.000Z","id":"G1462756782-LAADS","original_format":"ECHO10","granule_size":"53.4025135040283","browse_flag":true,"polygons":[["76.326881 + -160.054773 66.832431 -93.639896 70.678802 -42.668714 84.322971 62.469745 + 76.326881 -160.054773"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2035.061.2017171194235.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2035.061.2017171194235.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2035.061.2017171194235.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2035.061.2017272131553.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2040.061.2017171194359.hdf","time_start":"2000-02-25T20:40:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070963","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T20:45:00.000Z","id":"G1462756779-LAADS","original_format":"ECHO10","granule_size":"153.859506607056","browse_flag":true,"polygons":[["58.612623 + -156.962598 53.399171 -119.07702 67.147858 -93.997616 76.792485 -161.883183 + 58.612623 -156.962598"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2040.061.2017171194359.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2040.061.2017171194359.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2040.061.2017171194359.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2040.061.2017272132630.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2045.061.2017171194312.hdf","time_start":"2000-02-25T20:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071294","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T20:50:00.000Z","id":"G1462756897-LAADS","original_format":"ECHO10","granule_size":"157.649514198303","browse_flag":true,"polygons":[["40.802245 + -158.185194 37.129963 -131.01265 53.674333 -119.656525 59.099126 -157.50245 + 40.802245 -158.185194"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2045.061.2017171194312.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2045.061.2017171194312.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2045.061.2017171194312.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2045.061.2017272134010.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2050.061.2017171194341.hdf","time_start":"2000-02-25T20:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070600","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T20:55:00.000Z","id":"G1462756614-LAADS","original_format":"ECHO10","granule_size":"155.690161705017","browse_flag":true,"polygons":[["22.988737 + -160.545955 19.888979 -137.966958 37.310845 -131.406184 41.22756 -158.429349 + 22.988737 -160.545955"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2050.061.2017171194341.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2050.061.2017171194341.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2050.061.2017171194341.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2050.061.2017272133754.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2055.061.2017171194410.hdf","time_start":"2000-02-25T20:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071295","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T21:00:00.000Z","id":"G1462756899-LAADS","original_format":"ECHO10","granule_size":"153.816133499146","browse_flag":true,"polygons":[["5.21946 + -163.698592 2.238407 -142.77757 20.021364 -138.24102 23.305241 -160.663627 + 5.21946 -163.698592"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2055.061.2017171194410.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2055.061.2017171194410.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2055.061.2017171194410.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2055.061.2017272133423.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2100.061.2017171194348.hdf","time_start":"2000-02-25T21:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070601","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T21:05:00.000Z","id":"G1462756615-LAADS","original_format":"ECHO10","granule_size":"154.671903610229","browse_flag":true,"polygons":[["-12.545275 + -167.865874 -15.749648 -146.380822 2.323806 -142.84378 5.404987 -163.753121 + -12.545275 -167.865874"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2100.061.2017171194348.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2100.061.2017171194348.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2100.061.2017171194348.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2100.061.2017272132754.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2105.061.2017171194406.hdf","time_start":"2000-02-25T21:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070602","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T21:10:00.000Z","id":"G1462756616-LAADS","original_format":"ECHO10","granule_size":"154.407267570496","browse_flag":true,"polygons":[["-29.980506 + -173.684046 -33.782897 -148.992167 -15.637942 -146.141866 -12.452279 -167.853122 + -29.980506 -173.684046"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2105.061.2017171194406.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2105.061.2017171194406.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2105.061.2017171194406.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2105.061.2017272133018.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2110.061.2017171194258.hdf","time_start":"2000-02-25T21:10:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070603","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T21:15:00.000Z","id":"G1462756618-LAADS","original_format":"ECHO10","granule_size":"166.619084358215","browse_flag":true,"polygons":[["-46.699299 + 176.980916 -51.75484 -150.625539 -33.530439 -148.55049 -29.893852 -173.651434 + -46.699299 176.980916"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2110.061.2017171194258.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2110.061.2017171194258.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2110.061.2017171194258.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2110.061.2017272134249.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2115.061.2017171195441.hdf","time_start":"2000-02-25T21:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715071296","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T21:20:00.000Z","id":"G1462756901-LAADS","original_format":"ECHO10","granule_size":"167.378742218018","browse_flag":true,"polygons":[["-61.609816 + 158.866959 -69.586813 -149.835113 -51.361146 -149.950161 -46.656825 177.149103 + -61.609816 158.866959"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2115.061.2017171195441.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2115.061.2017171195441.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2115.061.2017171195441.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2115.061.2017272133758.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2120.061.2017171194301.hdf","time_start":"2000-02-25T21:20:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070604","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T21:25:00.000Z","id":"G1462756619-LAADS","original_format":"ECHO10","granule_size":"147.765875816345","browse_flag":true,"polygons":[["-70.395008 + 118.5781 -86.449005 -112.743953 -69.071943 -148.913026 -61.685168 159.29604 + -70.395008 118.5781"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2120.061.2017171194301.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2120.061.2017171194301.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2120.061.2017171194301.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2120.061.2017272132613.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2125.061.2017171194403.hdf","time_start":"2000-02-25T21:25:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070605","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T21:30:00.000Z","id":"G1462756620-LAADS","original_format":"ECHO10","granule_size":"68.4926147460938","browse_flag":true,"polygons":[["-65.463915 + 70.719485 -74.420855 8.001366 -85.832393 -114.744225 -70.750847 118.962359 + -65.463915 70.719485"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2125.061.2017171194403.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2125.061.2017171194403.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2125.061.2017171194403.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2125.061.2017272131653.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2215.061.2017171194422.hdf","time_start":"2000-02-25T22:15:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070606","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T22:20:00.000Z","id":"G1462756622-LAADS","original_format":"ECHO10","granule_size":"33.8036966323853","browse_flag":true,"polygons":[["72.429107 + 176.924281 64.310422 -125.976754 71.244201 -79.758972 87.049449 78.837151 + 72.429107 176.924281"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2215.061.2017171194422.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2215.061.2017171194422.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2215.061.2017171194422.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2215.061.2017272131249.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2220.061.2017171194231.hdf","time_start":"2000-02-25T22:20:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070607","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T22:25:00.000Z","id":"G1462756621-LAADS","original_format":"ECHO10","granule_size":"17.382040977478","browse_flag":true,"polygons":[["54.670778 + 178.205793 49.933483 -147.149755 64.651495 -126.497778 72.908692 175.63476 + 54.670778 178.205793"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2220.061.2017171194231.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2220.061.2017171194231.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2220.061.2017171194231.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2220.061.2017272131227.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2225.061.2017171194428.hdf","time_start":"2000-02-25T22:25:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070964","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T22:30:00.000Z","id":"G1462756781-LAADS","original_format":"ECHO10","granule_size":"134.925267219543","browse_flag":true,"polygons":[["36.824418 + 176.643951 33.327444 -157.546418 50.176988 -147.665864 55.146066 177.759219 + 36.824418 176.643951"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2225.061.2017171194428.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2225.061.2017171194428.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2225.061.2017171194428.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2225.061.2017272133729.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2230.061.2017171194327.hdf","time_start":"2000-02-25T22:30:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070608","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T22:35:00.000Z","id":"G1462756623-LAADS","original_format":"ECHO10","granule_size":"151.052300453186","browse_flag":true,"polygons":[["19.011929 + 174.10089 15.971642 -163.903187 33.502762 -157.939147 37.226652 176.436159 + 19.011929 174.10089"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2230.061.2017171194327.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2230.061.2017171194327.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2230.061.2017171194327.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2230.061.2017272133325.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2235.061.2017171194310.hdf","time_start":"2000-02-25T22:35:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070609","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T22:40:00.000Z","id":"G1462756624-LAADS","original_format":"ECHO10","granule_size":"149.203914642334","browse_flag":true,"polygons":[["1.264806 + 170.758106 -1.736392 -168.394926 16.09388 -164.143194 19.301127 174.000836 + 1.264806 170.758106"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2235.061.2017171194310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2235.061.2017171194310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2235.061.2017171194310.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2235.061.2017272132703.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2240.061.2017171200856.hdf","time_start":"2000-02-25T22:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072533","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T22:45:00.000Z","id":"G1462756973-LAADS","original_format":"ECHO10","granule_size":"154.334410667419","browse_flag":true,"polygons":[["-16.390925 + 166.319886 -19.691023 -171.744587 -1.661947 -168.38811 1.418003 170.716962 + -16.390925 166.319886"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2240.061.2017171200856.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2240.061.2017171200856.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2240.061.2017171200856.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2240.061.2017272132622.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2245.061.2017171194257.hdf","time_start":"2000-02-25T22:45:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070965","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T22:50:00.000Z","id":"G1462756784-LAADS","original_format":"ECHO10","granule_size":"158.905735969543","browse_flag":true,"polygons":[["-33.800572 + 159.92149 -37.808216 -174.181064 -19.550487 -171.456132 -16.300639 166.342696 + -33.800572 159.92149"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2245.061.2017171194257.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2245.061.2017171194257.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2245.061.2017171194257.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2245.061.2017272133529.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2250.061.2017171194308.hdf","time_start":"2000-02-25T22:50:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070610","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T22:55:00.000Z","id":"G1462756625-LAADS","original_format":"ECHO10","granule_size":"161.519124031067","browse_flag":true,"polygons":[["-50.258729 + 149.298013 -55.755361 -175.498243 -37.522575 -173.689668 -33.718003 159.967573 + -50.258729 149.298013"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2250.061.2017171194308.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2250.061.2017171194308.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2250.061.2017171194308.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2250.061.2017272133740.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2255.061.2017171194333.hdf","time_start":"2000-02-25T22:55:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070966","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T23:00:00.000Z","id":"G1462756785-LAADS","original_format":"ECHO10","granule_size":"162.845361709595","browse_flag":true,"polygons":[["-64.388097 + 127.639501 -73.535322 -173.338833 -55.332101 -174.757732 -50.233752 149.512603 + -64.388097 127.639501"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2255.061.2017171194333.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2255.061.2017171194333.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2255.061.2017171194333.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2255.061.2017272133723.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2300.061.2017171194323.hdf","time_start":"2000-02-25T23:00:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070611","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-25T23:05:00.000Z","id":"G1462756626-LAADS","original_format":"ECHO10","granule_size":"132.07592010498","browse_flag":true,"polygons":[["-70.560977 + 81.740038 -86.965259 -64.245896 -72.995055 -172.31374 -64.506539 128.12739 + -70.560977 81.740038"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2300.061.2017171194323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2300.061.2017171194323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2300.061.2017171194323.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2300.061.2017272131531.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2305.061.2017171194223.hdf","time_start":"2000-02-25T23:05:00.000Z","updated":"2022-11-22T11:54:16.440Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715070612","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-25T23:10:00.000Z","id":"G1462756627-LAADS","original_format":"ECHO10","granule_size":"46.7002048492432","browse_flag":true,"polygons":[["-62.819179 + 38.954135 -70.486886 -15.553148 -86.832647 -76.245853 -70.960699 81.88741 + -62.819179 38.954135"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2305.061.2017171194223.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2305.061.2017171194223.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2305.061.2017171194223.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2305.061.2017272131317.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000056.2355.061.2017171200652.hdf","time_start":"2000-02-25T23:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072534","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T00:00:00.000Z","id":"G1462756970-LAADS","original_format":"ECHO10","granule_size":"107.014942169189","browse_flag":true,"polygons":[["68.439599 + 153.080065 61.435016 -157.126052 71.010755 -117.060565 85.875693 119.711942 + 68.439599 153.080065"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2355.061.2017171200652.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000056.2355.061.2017171200652.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/056/MOD02QKM.A2000056.2355.061.2017171200652.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/056/MOBRGB.A2000056.2355.061.2017272131708.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0000.061.2017171200916.hdf","time_start":"2000-02-26T00:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072535","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T00:05:00.000Z","id":"G1462758475-LAADS","original_format":"ECHO10","granule_size":"163.038844108582","browse_flag":true,"polygons":[["50.660149 + 153.259623 46.310086 -174.781232 61.752173 -157.679163 68.928468 152.114402 + 50.660149 153.259623"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0000.061.2017171200916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0000.061.2017171200916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0000.061.2017171200916.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0000.061.2017272134037.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0005.061.2017171200710.hdf","time_start":"2000-02-26T00:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072536","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T00:10:00.000Z","id":"G1462758473-LAADS","original_format":"ECHO10","granule_size":"166.562081336975","browse_flag":true,"polygons":[["32.84199 + 151.425622 29.495236 176.073597 46.537228 -175.27566 51.122961 152.891676 + 32.84199 151.425622"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0005.061.2017171200710.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0005.061.2017171200710.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0005.061.2017171200710.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0005.061.2017272134631.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0010.061.2017171200711.hdf","time_start":"2000-02-26T00:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072537","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T00:15:00.000Z","id":"G1462758476-LAADS","original_format":"ECHO10","granule_size":"144.537838935852","browse_flag":true,"polygons":[["15.036985 + 148.707245 12.035752 170.248744 29.657369 175.714013 33.222035 151.248317 + 15.036985 148.707245"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0010.061.2017171200711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0010.061.2017171200711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0010.061.2017171200711.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0010.061.2017272133531.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0015.061.2017171200942.hdf","time_start":"2000-02-26T00:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072538","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T00:20:00.000Z","id":"G1462758478-LAADS","original_format":"ECHO10","granule_size":"152.548322677612","browse_flag":true,"polygons":[["-2.68236 + 145.161823 -5.71996 166.040151 12.148582 170.044011 15.297397 148.622688 -2.68236 + 145.161823"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0015.061.2017171200942.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0015.061.2017171200942.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0015.061.2017171200942.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0015.061.2017272134401.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0020.061.2017171200709.hdf","time_start":"2000-02-26T00:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072539","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T00:25:00.000Z","id":"G1462758480-LAADS","original_format":"ECHO10","granule_size":"164.363965034485","browse_flag":true,"polygons":[["-20.306924 + 140.393129 -23.723431 162.918374 -5.655308 166.123989 -2.56209 145.133766 + -20.306924 140.393129"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0020.061.2017171200709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0020.061.2017171200709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0020.061.2017171200709.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0020.061.2017272134806.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0025.061.2017171201427.hdf","time_start":"2000-02-26T00:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072540","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T00:30:00.000Z","id":"G1462758481-LAADS","original_format":"ECHO10","granule_size":"156.941947937012","browse_flag":true,"polygons":[["-37.49638 + 133.36608 -41.740138 160.692753 -23.551118 163.248738 -20.217891 140.41869 + -37.49638 133.36608"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0025.061.2017171201427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0025.061.2017171201427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0025.061.2017171201427.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0025.061.2017272133426.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0030.061.2017171201426.hdf","time_start":"2000-02-26T00:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072541","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T00:35:00.000Z","id":"G1462758479-LAADS","original_format":"ECHO10","granule_size":"166.813118934631","browse_flag":true,"polygons":[["-53.716045 + 121.111283 -59.750835 159.761008 -41.423984 161.239248 -37.421023 133.436604 + -53.716045 121.111283"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0030.061.2017171201426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0030.061.2017171201426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0030.061.2017171201426.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0030.061.2017272134457.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0035.061.2017171201419.hdf","time_start":"2000-02-26T00:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072542","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T00:40:00.000Z","id":"G1462758482-LAADS","original_format":"ECHO10","granule_size":"154.563412666321","browse_flag":true,"polygons":[["-66.801805 + 95.0345 -77.453356 164.295018 -59.296915 160.576241 -53.712616 121.380328 + -66.801805 95.0345"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0035.061.2017171201419.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0035.061.2017171201419.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0035.061.2017171201419.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0035.061.2017272133920.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0040.061.2017171202117.hdf","time_start":"2000-02-26T00:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073198","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T00:45:00.000Z","id":"G1462758813-LAADS","original_format":"ECHO10","granule_size":"131.263883590698","browse_flag":true,"polygons":[["-69.933666 + 45.170346 -83.869529 -55.920833 -76.879385 165.548839 -66.986745 95.584499 + -69.933666 45.170346"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0040.061.2017171202117.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0040.061.2017171202117.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0040.061.2017171202117.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0040.061.2017272132249.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0045.061.2017171201355.hdf","time_start":"2000-02-26T00:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072543","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T00:50:00.000Z","id":"G1462758486-LAADS","original_format":"ECHO10","granule_size":"25.1252717971802","browse_flag":true,"polygons":[["-59.868078 + 8.436166 -66.545211 -39.54526 -84.188138 -61.257755 -70.334485 45.070026 -59.868078 + 8.436166"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0045.061.2017171201355.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0045.061.2017171201355.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0045.061.2017171201355.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0045.061.2017272132248.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0130.061.2017171201402.hdf","time_start":"2000-02-26T01:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072544","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T01:35:00.000Z","id":"G1462758483-LAADS","original_format":"ECHO10","granule_size":"20.87242603302","browse_flag":true,"polygons":[["82.065248 + 119.108744 69.581607 -153.357959 68.338384 -100.942071 78.823923 -25.891792 + 82.065248 119.108744"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0130.061.2017171201402.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0130.061.2017171201402.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0130.061.2017171201402.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0130.061.2017272132230.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0135.061.2017171201441.hdf","time_start":"2000-02-26T01:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072545","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T01:40:00.000Z","id":"G1462758488-LAADS","original_format":"ECHO10","granule_size":"138.192811965942","browse_flag":true,"polygons":[["64.478028 + 128.805832 58.322575 172.923732 69.949476 -153.557088 82.451955 115.478013 + 64.478028 128.805832"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0135.061.2017171201441.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0135.061.2017171201441.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0135.061.2017171201441.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0135.061.2017272132956.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0140.061.2017171201445.hdf","time_start":"2000-02-26T01:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072546","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T01:45:00.000Z","id":"G1462758484-LAADS","original_format":"ECHO10","granule_size":"163.635810852051","browse_flag":true,"polygons":[["46.685475 + 128.232925 42.642908 158.000178 58.619057 172.359833 64.964532 128.01606 46.685475 + 128.232925"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0140.061.2017171201445.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0140.061.2017171201445.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0140.061.2017171201445.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0140.061.2017272133959.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0145.061.2017171201440.hdf","time_start":"2000-02-26T01:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072863","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T01:50:00.000Z","id":"G1462758628-LAADS","original_format":"ECHO10","granule_size":"164.863652229309","browse_flag":true,"polygons":[["28.864691 + 126.162332 25.635807 149.851154 42.854217 157.529947 47.130677 127.917292 + 28.864691 126.162332"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0145.061.2017171201440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0145.061.2017171201440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0145.061.2017171201440.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0145.061.2017272135041.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0150.061.2017171201441.hdf","time_start":"2000-02-26T01:50:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072547","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T01:55:00.000Z","id":"G1462758487-LAADS","original_format":"ECHO10","granule_size":"145.152563095093","browse_flag":true,"polygons":[["11.069604 + 123.270911 8.089538 144.479129 25.78559 149.523999 29.219022 126.0108 11.069604 + 123.270911"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0150.061.2017171201441.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0150.061.2017171201441.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0150.061.2017171201441.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0150.061.2017272133526.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0155.061.2017171201444.hdf","time_start":"2000-02-26T01:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072864","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T02:00:00.000Z","id":"G1462758630-LAADS","original_format":"ECHO10","granule_size":"160.282563209534","browse_flag":true,"polygons":[["-6.627091 + 119.504307 -9.716442 140.521241 8.193563 144.31012 11.300034 123.200881 -6.627091 + 119.504307"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0155.061.2017171201444.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0155.061.2017171201444.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0155.061.2017171201444.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0155.061.2017272134058.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0200.061.2017171201433.hdf","time_start":"2000-02-26T02:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072548","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T02:05:00.000Z","id":"G1462758485-LAADS","original_format":"ECHO10","granule_size":"168.311091423035","browse_flag":true,"polygons":[["-24.197688 + 114.35825 -27.750641 137.623652 -9.648375 140.684991 -6.528767 119.489269 + -24.197688 114.35825"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0200.061.2017171201433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0200.061.2017171201433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0200.061.2017171201433.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0200.061.2017272134403.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0205.061.2017171201433.hdf","time_start":"2000-02-26T02:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072549","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T02:10:00.000Z","id":"G1462758491-LAADS","original_format":"ECHO10","granule_size":"166.68981552124","browse_flag":true,"polygons":[["-41.224751 + 106.53554 -45.752409 135.613823 -27.546544 137.998682 -24.109204 114.385683 + -41.224751 106.53554"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0205.061.2017171201433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0205.061.2017171201433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0205.061.2017171201433.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0205.061.2017272134614.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0210.061.2017171201440.hdf","time_start":"2000-02-26T02:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072865","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T02:15:00.000Z","id":"G1462758632-LAADS","original_format":"ECHO10","granule_size":"166.857880592346","browse_flag":true,"polygons":[["-56.967601 + 92.392433 -63.642117 135.197776 -45.404599 136.202331 -41.161096 106.642578 + -56.967601 92.392433"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0210.061.2017171201440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0210.061.2017171201440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0210.061.2017171201440.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0210.061.2017272135121.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0215.061.2017171201446.hdf","time_start":"2000-02-26T02:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072550","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T02:20:00.000Z","id":"G1462758489-LAADS","original_format":"ECHO10","granule_size":"153.545004844666","browse_flag":true,"polygons":[["-68.732556 + 60.900941 -81.316063 144.269577 -63.165652 136.014083 -56.992317 92.724331 + -68.732556 60.900941"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0215.061.2017171201446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0215.061.2017171201446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0215.061.2017171201446.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0215.061.2017272133158.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0220.061.2017171201444.hdf","time_start":"2000-02-26T02:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072551","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T02:25:00.000Z","id":"G1462758492-LAADS","original_format":"ECHO10","granule_size":"111.910371780396","browse_flag":true,"polygons":[["-68.572854 + 9.671441 -80.132603 -71.344043 -80.694674 145.927579 -68.99343 61.462451 -68.572854 + 9.671441"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0220.061.2017171201444.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0220.061.2017171201444.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0220.061.2017171201444.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0220.061.2017272131459.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0310.061.2017171201443.hdf","time_start":"2000-02-26T03:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072552","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T03:15:00.000Z","id":"G1462758494-LAADS","original_format":"ECHO10","granule_size":"40.7740201950073","browse_flag":true,"polygons":[["78.202992 + 99.690793 67.826793 171.815173 70.049927 -136.072039 82.609745 -43.412659 + 78.202992 99.690793"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0310.061.2017171201443.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0310.061.2017171201443.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0310.061.2017171201443.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0310.061.2017272132052.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0315.061.2017171201518.hdf","time_start":"2000-02-26T03:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072866","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T03:20:00.000Z","id":"G1462758633-LAADS","original_format":"ECHO10","granule_size":"150.25935459137","browse_flag":true,"polygons":[["60.511878 + 104.172434 55.025545 143.864396 68.18878 171.44278 78.649534 97.507118 60.511878 + 104.172434"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0315.061.2017171201518.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0315.061.2017171201518.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0315.061.2017171201518.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0315.061.2017272132809.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0320.061.2017171201515.hdf","time_start":"2000-02-26T03:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072553","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T03:25:00.000Z","id":"G1462758495-LAADS","original_format":"ECHO10","granule_size":"165.388822555542","browse_flag":true,"polygons":[["42.709232 + 103.163402 38.92087 131.088965 55.301496 143.307705 60.998388 103.614018 42.709232 + 103.163402"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0320.061.2017171201515.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0320.061.2017171201515.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0320.061.2017171201515.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0320.061.2017272133305.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0325.061.2017171201510.hdf","time_start":"2000-02-26T03:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072867","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T03:30:00.000Z","id":"G1462758634-LAADS","original_format":"ECHO10","granule_size":"158.473473548889","browse_flag":true,"polygons":[["24.890332 + 100.906081 21.75456 123.762731 39.116957 130.650614 43.1351 102.922585 24.890332 + 100.906081"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0325.061.2017171201510.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0325.061.2017171201510.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0325.061.2017171201510.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0325.061.2017272133242.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0330.061.2017171201513.hdf","time_start":"2000-02-26T03:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072868","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T03:35:00.000Z","id":"G1462758638-LAADS","original_format":"ECHO10","granule_size":"164.516739845276","browse_flag":true,"polygons":[["7.116527 + 97.792427 4.135456 118.781747 21.892904 123.469791 25.21509 100.728769 7.116527 + 97.792427"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0330.061.2017171201513.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0330.061.2017171201513.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0330.061.2017171201513.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0330.061.2017272134620.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0335.061.2017171201517.hdf","time_start":"2000-02-26T03:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072869","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T03:40:00.000Z","id":"G1462758636-LAADS","original_format":"ECHO10","granule_size":"164.321214675903","browse_flag":true,"polygons":[["-10.573888 + 93.777863 -13.735077 115.076333 4.227139 118.67772 7.312075 97.734982 -10.573888 + 93.777863"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0335.061.2017171201517.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0335.061.2017171201517.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0335.061.2017171201517.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0335.061.2017272134848.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0340.061.2017171201518.hdf","time_start":"2000-02-26T03:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072870","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T03:45:00.000Z","id":"G1462758635-LAADS","original_format":"ECHO10","granule_size":"160.758718490601","browse_flag":true,"polygons":[["-28.057519 + 88.201817 -31.770324 112.374217 -13.638911 115.294221 -10.478575 93.781145 + -28.057519 88.201817"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0340.061.2017171201518.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0340.061.2017171201518.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0340.061.2017171201518.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0340.061.2017272134345.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0345.061.2017171201514.hdf","time_start":"2000-02-26T03:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072554","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T03:50:00.000Z","id":"G1462758493-LAADS","original_format":"ECHO10","granule_size":"168.369549751282","browse_flag":true,"polygons":[["-44.889856 + 79.422918 -49.752882 110.605808 -31.533829 112.792439 -27.970578 88.232862 + -44.889856 79.422918"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0345.061.2017171201514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0345.061.2017171201514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0345.061.2017171201514.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0345.061.2017272135153.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0350.061.2017171201504.hdf","time_start":"2000-02-26T03:50:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072871","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T03:55:00.000Z","id":"G1462758640-LAADS","original_format":"ECHO10","granule_size":"166.769322395325","browse_flag":true,"polygons":[["-60.117087 + 62.795204 -67.607558 110.881537 -49.374684 111.230871 -44.840147 79.571086 + -60.117087 62.795204"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0350.061.2017171201504.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0350.061.2017171201504.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0350.061.2017171201504.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0350.061.2017272134937.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0355.061.2017171201505.hdf","time_start":"2000-02-26T03:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072872","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T04:00:00.000Z","id":"G1462758637-LAADS","original_format":"ECHO10","granule_size":"148.658966064453","browse_flag":true,"polygons":[["-70.014014 + 25.554199 -84.888755 132.046729 -67.105076 111.769606 -60.173497 63.194056 + -70.014014 25.554199"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0355.061.2017171201505.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0355.061.2017171201505.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0355.061.2017171201505.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0355.061.2017272132614.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0400.061.2017171201454.hdf","time_start":"2000-02-26T04:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072873","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T04:05:00.000Z","id":"G1462758647-LAADS","original_format":"ECHO10","granule_size":"86.0892200469971","browse_flag":true,"polygons":[["-66.551137 + -24.223973 -76.282835 -92.093136 -84.232366 132.990814 -70.292368 26.003683 + -66.551137 -24.223973"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0400.061.2017171201454.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0400.061.2017171201454.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0400.061.2017171201454.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0400.061.2017272131938.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0450.061.2017171201516.hdf","time_start":"2000-02-26T04:50:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072555","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T04:55:00.000Z","id":"G1462758490-LAADS","original_format":"ECHO10","granule_size":"67.7820682525635","browse_flag":true,"polygons":[["74.280907 + 77.354778 65.534307 138.608711 71.037827 -172.375182 85.930085 -47.315282 + 74.280907 77.354778"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0450.061.2017171201516.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0450.061.2017171201516.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0450.061.2017171201516.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0450.061.2017272132320.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0455.061.2017171201524.hdf","time_start":"2000-02-26T04:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072874","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T05:00:00.000Z","id":"G1462758645-LAADS","original_format":"ECHO10","granule_size":"154.413643836975","browse_flag":true,"polygons":[["56.540194 + 79.385948 51.594545 115.478425 65.89163 138.103872 74.756865 75.858855 56.540194 + 79.385948"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0455.061.2017171201524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0455.061.2017171201524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0455.061.2017171201524.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0455.061.2017272132913.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0500.061.2017171201534.hdf","time_start":"2000-02-26T05:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072875","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T05:05:00.000Z","id":"G1462758639-LAADS","original_format":"ECHO10","granule_size":"163.343106269836","browse_flag":true,"polygons":[["38.731772 + 78.002208 35.154771 104.41238 51.849413 114.942029 57.022865 78.933471 38.731772 + 78.002208"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0500.061.2017171201534.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0500.061.2017171201534.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0500.061.2017171201534.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0500.061.2017272133254.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0505.061.2017171201536.hdf","time_start":"2000-02-26T05:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072876","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T05:10:00.000Z","id":"G1462758641-LAADS","original_format":"ECHO10","granule_size":"164.541153907776","browse_flag":true,"polygons":[["20.915612 + 75.525793 17.859575 97.742672 35.343867 103.972613 39.144857 77.757984 20.915612 + 75.525793"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0505.061.2017171201536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0505.061.2017171201536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0505.061.2017171201536.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0505.061.2017272133344.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0510.061.2017171201537.hdf","time_start":"2000-02-26T05:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072556","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T05:15:00.000Z","id":"G1462758497-LAADS","original_format":"ECHO10","granule_size":"154.378715515137","browse_flag":true,"polygons":[["3.159543 + 72.267722 0.170594 93.14404 17.978332 97.525922 21.221966 75.408671 3.159543 + 72.267722"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0510.061.2017171201537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0510.061.2017171201537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0510.061.2017171201537.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0510.061.2017272133659.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0515.061.2017171201531.hdf","time_start":"2000-02-26T05:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072557","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T05:20:00.000Z","id":"G1462758496-LAADS","original_format":"ECHO10","granule_size":"157.86326789856","browse_flag":true,"polygons":[["-14.506015 + 67.978179 -17.757637 89.687514 0.249593 93.118716 3.32886 72.223223 -14.506015 + 67.978179"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0515.061.2017171201531.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0515.061.2017171201531.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0515.061.2017171201531.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0515.061.2017272134316.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0520.061.2017171201536.hdf","time_start":"2000-02-26T05:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072877","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T05:25:00.000Z","id":"G1462758642-LAADS","original_format":"ECHO10","granule_size":"152.401254653931","browse_flag":true,"polygons":[["-31.886786 + 61.896877 -35.787635 87.170585 -17.631143 89.948145 -14.414369 67.997917 -31.886786 + 61.896877"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0520.061.2017171201536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0520.061.2017171201536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0520.061.2017171201536.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0520.061.2017272133810.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0525.061.2017171202146.hdf","time_start":"2000-02-26T05:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073199","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T05:30:00.000Z","id":"G1462758814-LAADS","original_format":"ECHO10","granule_size":"168.958060264587","browse_flag":true,"polygons":[["-48.481833 + 51.95513 -53.74699 85.687602 -35.518769 87.634593 -31.80207 61.93584 -48.481833 + 51.95513"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0525.061.2017171202146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0525.061.2017171202146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0525.061.2017171202146.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0525.061.2017272135240.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0530.061.2017171202214.hdf","time_start":"2000-02-26T05:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073200","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T05:35:00.000Z","id":"G1462758823-LAADS","original_format":"ECHO10","granule_size":"163.128483772278","browse_flag":true,"polygons":[["-63.031495 + 32.182871 -71.558934 86.903723 -53.339276 86.297837 -48.448193 52.147172 -63.031495 + 32.182871"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0530.061.2017171202214.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0530.061.2017171202214.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0530.061.2017171202214.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0530.061.2017272135044.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0535.061.2017171201539.hdf","time_start":"2000-02-26T05:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072558","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T05:40:00.000Z","id":"G1462758499-LAADS","original_format":"ECHO10","granule_size":"142.504867553711","browse_flag":true,"polygons":[["-70.58169 + -11.034032 -87.36693 156.582752 -71.028656 88.017336 -63.12411 32.653086 -70.58169 + -11.034032"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0535.061.2017171201539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0535.061.2017171201539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0535.061.2017171201539.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0535.061.2017272132539.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0540.061.2017171201524.hdf","time_start":"2000-02-26T05:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072559","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T05:45:00.000Z","id":"G1462758502-LAADS","original_format":"ECHO10","granule_size":"59.873197555542","browse_flag":true,"polygons":[["-64.156421 + -56.480821 -72.466429 -115.049299 -86.838211 148.516771 -70.910324 -10.753015 + -64.156421 -56.480821"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0540.061.2017171201524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0540.061.2017171201524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0540.061.2017171201524.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0540.061.2017272132254.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0630.061.2017171201543.hdf","time_start":"2000-02-26T06:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072878","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T06:35:00.000Z","id":"G1462758643-LAADS","original_format":"ECHO10","granule_size":"99.4089632034302","browse_flag":true,"polygons":[["70.428216 + 53.813754 62.903622 107.036431 71.232497 150.334498 87.014064 -6.012288 70.428216 + 53.813754"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0630.061.2017171201543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0630.061.2017171201543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0630.061.2017171201543.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0630.061.2017272132420.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0635.061.2017171202323.hdf","time_start":"2000-02-26T06:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073527","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T06:40:00.000Z","id":"G1462759104-LAADS","original_format":"ECHO10","granule_size":"157.530150413513","browse_flag":true,"polygons":[["52.570865 + 54.493004 48.047112 87.670668 63.233887 106.491984 70.913263 52.704306 52.570865 + 54.493004"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0635.061.2017171202323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0635.061.2017171202323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0635.061.2017171202323.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0635.061.2017272133601.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0640.061.2017171201605.hdf","time_start":"2000-02-26T06:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072560","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T06:45:00.000Z","id":"G1462758500-LAADS","original_format":"ECHO10","granule_size":"161.436552047729","browse_flag":true,"polygons":[["34.755748 + 52.793375 31.347778 77.949545 48.289128 87.140467 53.043776 54.10201 34.755748 + 52.793375"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0640.061.2017171201605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0640.061.2017171201605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0640.061.2017171201605.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0640.061.2017272133313.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0645.061.2017171201612.hdf","time_start":"2000-02-26T06:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072879","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T06:50:00.000Z","id":"G1462758644-LAADS","original_format":"ECHO10","granule_size":"133.17645072937","browse_flag":true,"polygons":[["16.945553 + 50.158937 13.936221 71.87632 31.516406 77.567309 35.150961 52.603511 16.945553 + 50.158937"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0645.061.2017171201612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0645.061.2017171201612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0645.061.2017171201612.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0645.061.2017272132018.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0650.061.2017171201613.hdf","time_start":"2000-02-26T06:50:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072880","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T06:55:00.000Z","id":"G1462758646-LAADS","original_format":"ECHO10","granule_size":"141.793064117432","browse_flag":true,"polygons":[["-0.779489 + 46.697143 -3.8003 67.563187 14.048969 71.680663 17.223327 50.048549 -0.779489 + 46.697143"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0650.061.2017171201613.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0650.061.2017171201613.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0650.061.2017171201613.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0650.061.2017272133350.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0655.061.2017171201618.hdf","time_start":"2000-02-26T06:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072881","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T07:00:00.000Z","id":"G1462758650-LAADS","original_format":"ECHO10","granule_size":"162.623952865601","browse_flag":true,"polygons":[["-18.419806 + 42.095103 -21.779297 64.33444 -3.731192 67.609846 -0.644778 46.663814 -18.419806 + 42.095103"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0655.061.2017171201618.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0655.061.2017171201618.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0655.061.2017171201618.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0655.061.2017272134128.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0700.061.2017171201613.hdf","time_start":"2000-02-26T07:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072561","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T07:05:00.000Z","id":"G1462758501-LAADS","original_format":"ECHO10","granule_size":"155.403523445129","browse_flag":true,"polygons":[["-35.674985 + 35.401318 -39.799754 62.009152 -21.621615 64.638544 -18.329037 42.117197 -35.674985 + 35.401318"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0700.061.2017171201613.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0700.061.2017171201613.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0700.061.2017171201613.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0700.061.2017272133924.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0705.061.2017171201609.hdf","time_start":"2000-02-26T07:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072882","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T07:10:00.000Z","id":"G1462758651-LAADS","original_format":"ECHO10","granule_size":"156.203093528748","browse_flag":true,"polygons":[["-51.983743 + 24.043853 -57.733157 60.876038 -39.49872 62.521558 -35.598084 35.467182 -51.983743 + 24.043853"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0705.061.2017171201609.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0705.061.2017171201609.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0705.061.2017171201609.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0705.061.2017272134539.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0710.061.2017171201615.hdf","time_start":"2000-02-26T07:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072883","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T07:15:00.000Z","id":"G1462758648-LAADS","original_format":"ECHO10","granule_size":"156.492128372192","browse_flag":true,"polygons":[["-65.635203 + 0.316368 -75.484783 63.882956 -57.296837 61.577211 -51.969608 24.28707 -65.635203 + 0.316368"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0710.061.2017171201615.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0710.061.2017171201615.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0710.061.2017171201615.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0710.061.2017272134233.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0715.061.2017171201630.hdf","time_start":"2000-02-26T07:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072884","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T07:20:00.000Z","id":"G1462758649-LAADS","original_format":"ECHO10","granule_size":"136.971103668213","browse_flag":true,"polygons":[["-70.342221 + -47.819957 -85.619262 -165.497823 -74.927541 65.090807 -65.77701 0.838348 + -70.342221 -47.819957"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0715.061.2017171201630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0715.061.2017171201630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0715.061.2017171201630.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0715.061.2017272132345.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0720.061.2017171201556.hdf","time_start":"2000-02-26T07:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073201","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T07:25:00.000Z","id":"G1462758826-LAADS","original_format":"ECHO10","granule_size":"35.5996265411377","browse_flag":true,"polygons":[["-61.360975 + -87.586407 -68.54345 -138.745422 -85.768266 -173.98519 -70.707028 -47.773234 + -61.360975 -87.586407"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0720.061.2017171201556.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0720.061.2017171201556.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0720.061.2017171201556.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0720.061.2017272132121.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0810.061.2017171201628.hdf","time_start":"2000-02-26T08:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073202","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T08:15:00.000Z","id":"G1462758828-LAADS","original_format":"ECHO10","granule_size":"131.593506813049","browse_flag":true,"polygons":[["66.473088 + 29.710425 59.914941 76.55254 70.577 113.332547 84.259298 9.298976 66.473088 + 29.710425"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0810.061.2017171201628.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0810.061.2017171201628.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0810.061.2017171201628.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0810.061.2017272132451.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0815.061.2017171201629.hdf","time_start":"2000-02-26T08:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072885","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T08:20:00.000Z","id":"G1462758652-LAADS","original_format":"ECHO10","granule_size":"161.997678756714","browse_flag":true,"polygons":[["48.688366 + 29.504852 44.497487 60.33714 60.221397 75.992644 66.962333 28.858678 48.688366 + 29.504852"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0815.061.2017171201629.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0815.061.2017171201629.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0815.061.2017171201629.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0815.061.2017272133022.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0820.061.2017171201627.hdf","time_start":"2000-02-26T08:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072886","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T08:25:00.000Z","id":"G1462758657-LAADS","original_format":"ECHO10","granule_size":"165.082659721375","browse_flag":true,"polygons":[["30.782199 + 27.534511 27.499513 51.679099 44.716786 59.855131 49.142964 29.149952 30.782199 + 27.534511"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0820.061.2017171201627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0820.061.2017171201627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0820.061.2017171201627.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0820.061.2017272133149.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0825.061.2017171201642.hdf","time_start":"2000-02-26T08:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073203","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T08:30:00.000Z","id":"G1462758825-LAADS","original_format":"ECHO10","granule_size":"158.565144538879","browse_flag":true,"polygons":[["12.98337 + 24.748858 9.995195 46.099424 27.654673 51.338408 31.148583 27.394276 12.98337 + 24.748858"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0825.061.2017171201642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0825.061.2017171201642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0825.061.2017171201642.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0825.061.2017272132157.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0830.061.2017171201640.hdf","time_start":"2000-02-26T08:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073204","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T08:35:00.000Z","id":"G1462758824-LAADS","original_format":"ECHO10","granule_size":"157.820359230042","browse_flag":true,"polygons":[["-4.715525 + 21.08202 -7.777267 42.009362 10.106498 45.896809 13.228438 24.660227 -4.715525 + 21.08202"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0830.061.2017171201640.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0830.061.2017171201640.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0830.061.2017171201640.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0830.061.2017272132643.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0835.061.2017171201638.hdf","time_start":"2000-02-26T08:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072887","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T08:40:00.000Z","id":"G1462758653-LAADS","original_format":"ECHO10","granule_size":"167.140343666077","browse_flag":true,"polygons":[["-22.322281 + 16.14019 -25.803543 39.019131 -7.718614 42.148247 -4.616752 21.07393 -22.322281 + 16.14019"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0835.061.2017171201638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0835.061.2017171201638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0835.061.2017171201638.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0835.061.2017272133617.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0840.061.2017171201642.hdf","time_start":"2000-02-26T08:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073205","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T08:45:00.000Z","id":"G1462758827-LAADS","original_format":"ECHO10","granule_size":"157.215082168579","browse_flag":true,"polygons":[["-39.430944 + 8.71903 -43.81266 36.897117 -25.61374 39.366684 -22.234327 16.161855 -39.430944 + 8.71903"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0840.061.2017171201642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0840.061.2017171201642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0840.061.2017171201642.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0840.061.2017272133405.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0845.061.2017171201643.hdf","time_start":"2000-02-26T08:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072562","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T08:50:00.000Z","id":"G1462758498-LAADS","original_format":"ECHO10","granule_size":"169.163544654846","browse_flag":true,"polygons":[["-55.374097 + -4.431103 -61.715393 36.212873 -43.47809 37.460708 -39.356271 8.790351 -55.374097 + -4.431103"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0845.061.2017171201643.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0845.061.2017171201643.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0845.061.2017171201643.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0845.061.2017272134734.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0850.061.2017171201648.hdf","time_start":"2000-02-26T08:50:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072888","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T08:55:00.000Z","id":"G1462758654-LAADS","original_format":"ECHO10","granule_size":"158.639028549194","browse_flag":true,"polygons":[["-67.823409 + -33.025136 -79.381734 42.250606 -61.253498 36.910093 -55.384685 -4.129384 + -67.823409 -33.025136"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0850.061.2017171201648.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0850.061.2017171201648.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0850.061.2017171201648.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0850.061.2017272133704.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0855.061.2017171201627.hdf","time_start":"2000-02-26T08:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072889","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T09:00:00.000Z","id":"G1462758655-LAADS","original_format":"ECHO10","granule_size":"130.528776168823","browse_flag":true,"polygons":[["-69.321006 + -83.899348 -82.056131 -173.850041 -78.77593 44.019403 -68.017705 -32.475565 + -69.321006 -83.899348"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0855.061.2017171201627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0855.061.2017171201627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0855.061.2017171201627.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0855.061.2017272132037.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0945.061.2017171201641.hdf","time_start":"2000-02-26T09:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072890","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T09:50:00.000Z","id":"G1462758658-LAADS","original_format":"ECHO10","granule_size":"32.6013278961182","browse_flag":true,"polygons":[["80.158093 + -1.290141 68.794456 77.808422 69.275441 130.499372 80.721793 -146.71081 80.158093 + -1.290141"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0945.061.2017171201641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0945.061.2017171201641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0945.061.2017171201641.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0945.061.2017272132105.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0950.061.2017171201707.hdf","time_start":"2000-02-26T09:50:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073206","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T09:55:00.000Z","id":"G1462758904-LAADS","original_format":"ECHO10","granule_size":"154.259959220886","browse_flag":true,"polygons":[["62.509601 + 5.231462 56.705158 47.07161 69.151085 77.529656 80.578251 -4.140541 62.509601 + 5.231462"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0950.061.2017171201707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0950.061.2017171201707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0950.061.2017171201707.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0950.061.2017272132651.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.0955.061.2017171201703.hdf","time_start":"2000-02-26T09:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073528","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T10:00:00.000Z","id":"G1462759108-LAADS","original_format":"ECHO10","granule_size":"165.532295227051","browse_flag":true,"polygons":[["44.712585 + 4.456589 40.803392 33.275885 56.992096 46.507661 62.999225 4.59373 44.712585 + 4.456589"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0955.061.2017171201703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.0955.061.2017171201703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.0955.061.2017171201703.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.0955.061.2017272133622.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1000.061.2017171201701.hdf","time_start":"2000-02-26T10:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072891","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T10:05:00.000Z","id":"G1462758656-LAADS","original_format":"ECHO10","granule_size":"152.734185218811","browse_flag":true,"polygons":[["26.894205 + 2.274847 23.719422 25.53353 41.013742 32.797138 45.152105 4.15829 26.894205 + 2.274847"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1000.061.2017171201701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1000.061.2017171201701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1000.061.2017171201701.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1000.061.2017272132806.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1005.061.2017171201708.hdf","time_start":"2000-02-26T10:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072892","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T10:10:00.000Z","id":"G1462758659-LAADS","original_format":"ECHO10","granule_size":"158.724168777466","browse_flag":true,"polygons":[["9.020335 + -0.724071 6.046632 20.350572 23.860982 25.233496 27.239136 2.126229 9.020335 + -0.724071"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1005.061.2017171201708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1005.061.2017171201708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1005.061.2017171201708.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1005.061.2017272132505.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1010.061.2017171201705.hdf","time_start":"2000-02-26T10:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072893","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T10:15:00.000Z","id":"G1462758661-LAADS","original_format":"ECHO10","granule_size":"155.802924156189","browse_flag":true,"polygons":[["-8.667072 + -4.61925 -11.790167 16.514515 6.146211 20.204393 9.238511 -0.790928 -8.667072 + -4.61925"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1010.061.2017171201705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1010.061.2017171201705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1010.061.2017171201705.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1010.061.2017272133207.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1015.061.2017171201702.hdf","time_start":"2000-02-26T10:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073207","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T10:20:00.000Z","id":"G1462758905-LAADS","original_format":"ECHO10","granule_size":"161.531322479248","browse_flag":true,"polygons":[["-26.193751 + -9.977968 -29.825384 13.743424 -11.711802 16.730757 -8.568162 -4.622202 -26.193751 + -9.977968"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1015.061.2017171201702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1015.061.2017171201702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1015.061.2017171201702.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1015.061.2017272133834.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1020.061.2017171201721.hdf","time_start":"2000-02-26T10:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073208","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T10:25:00.000Z","id":"G1462758907-LAADS","original_format":"ECHO10","granule_size":"163.483639717102","browse_flag":true,"polygons":[["-43.122469 + -18.274349 -47.818789 11.848244 -29.60652 14.135215 -26.105008 -9.950461 -43.122469 + -18.274349"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1020.061.2017171201721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1020.061.2017171201721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1020.061.2017171201721.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1020.061.2017272134612.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1025.061.2017171201720.hdf","time_start":"2000-02-26T10:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073209","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T10:30:00.000Z","id":"G1462758909-LAADS","original_format":"ECHO10","granule_size":"168.090619087219","browse_flag":true,"polygons":[["-58.616457 + -33.622753 -65.69039 11.773179 -47.45524 12.465427 -43.067268 -18.141797 -58.616457 + -33.622753"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1025.061.2017171201720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1025.061.2017171201720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1025.061.2017171201720.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1025.061.2017272134835.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1030.061.2017171201721.hdf","time_start":"2000-02-26T10:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073210","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T10:35:00.000Z","id":"G1462758906-LAADS","original_format":"ECHO10","granule_size":"155.82906627655","browse_flag":true,"polygons":[["-69.459133 + -67.918835 -83.165483 25.225945 -65.201182 12.588954 -58.656149 -33.257774 + -69.459133 -67.918835"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1030.061.2017171201721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1030.061.2017171201721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1030.061.2017171201721.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1030.061.2017272133628.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1035.061.2017171201708.hdf","time_start":"2000-02-26T10:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072894","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T10:40:00.000Z","id":"G1462758660-LAADS","original_format":"ECHO10","granule_size":"104.098437309265","browse_flag":true,"polygons":[["-67.630298 + -118.652662 -78.238483 167.342707 -82.521725 26.857041 -69.722626 -67.413298 + -67.630298 -118.652662"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1035.061.2017171201708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1035.061.2017171201708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1035.061.2017171201708.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1035.061.2017272132344.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1125.061.2017171201711.hdf","time_start":"2000-02-26T11:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073211","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T11:30:00.000Z","id":"G1462758910-LAADS","original_format":"ECHO10","granule_size":"61.2292232513428","browse_flag":true,"polygons":[["76.261018 + -22.509827 66.746051 43.7939 70.64396 94.579052 84.390385 -159.64191 76.261018 + -22.509827"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1125.061.2017171201711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1125.061.2017171201711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1125.061.2017171201711.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1125.061.2017272132500.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1130.061.2017171201736.hdf","time_start":"2000-02-26T11:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073529","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T11:35:00.000Z","id":"G1462759107-LAADS","original_format":"ECHO10","granule_size":"155.534623146057","browse_flag":true,"polygons":[["58.540709 + -19.456699 53.331606 18.375794 67.098621 43.365545 76.720983 -24.321879 58.540709 + -19.456699"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1130.061.2017171201736.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1130.061.2017171201736.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1130.061.2017171201736.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1130.061.2017272134749.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1135.061.2017171201734.hdf","time_start":"2000-02-26T11:35:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073212","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T11:40:00.000Z","id":"G1462758908-LAADS","original_format":"ECHO10","granule_size":"160.231707572937","browse_flag":true,"polygons":[["40.734615 + -20.688318 37.053894 6.490007 53.599269 17.822794 59.024443 -19.998262 40.734615 + -20.688318"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1135.061.2017171201734.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1135.061.2017171201734.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1135.061.2017171201734.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1135.061.2017272134000.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1140.061.2017171201723.hdf","time_start":"2000-02-26T11:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073213","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T11:45:00.000Z","id":"G1462758911-LAADS","original_format":"ECHO10","granule_size":"160.435401916504","browse_flag":true,"polygons":[["22.918697 + -23.050381 19.818589 -0.478629 37.241647 6.071065 41.156433 -20.929696 22.918697 + -23.050381"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1140.061.2017171201723.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1140.061.2017171201723.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1140.061.2017171201723.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1140.061.2017272133404.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1145.061.2017171201722.hdf","time_start":"2000-02-26T11:45:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073214","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T11:50:00.000Z","id":"G1462758919-LAADS","original_format":"ECHO10","granule_size":"153.507976531982","browse_flag":true,"polygons":[["5.150678 + -26.208939 2.16925 -5.291327 19.952627 -0.760189 23.236305 -23.170261 5.150678 + -26.208939"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1145.061.2017171201722.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1145.061.2017171201722.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1145.061.2017171201722.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1145.061.2017272132832.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1150.061.2017171201727.hdf","time_start":"2000-02-26T11:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073530","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T11:55:00.000Z","id":"G1462759111-LAADS","original_format":"ECHO10","granule_size":"151.52939414978","browse_flag":true,"polygons":[["-12.61202 + -30.380729 -15.819577 -8.884671 2.253611 -5.350634 5.336053 -26.262819 -12.61202 + -30.380729"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1150.061.2017171201727.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1150.061.2017171201727.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1150.061.2017171201727.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1150.061.2017272133816.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1155.061.2017171201720.hdf","time_start":"2000-02-26T11:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073215","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T12:00:00.000Z","id":"G1462758913-LAADS","original_format":"ECHO10","granule_size":"145.852994918823","browse_flag":true,"polygons":[["-30.045864 + -36.204839 -33.852698 -11.49155 -15.707859 -8.643779 -12.519968 -30.364721 + -30.045864 -36.204839"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1155.061.2017171201720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1155.061.2017171201720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1155.061.2017171201720.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1155.061.2017272132524.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1200.061.2017171201726.hdf","time_start":"2000-02-26T12:00:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073216","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T12:05:00.000Z","id":"G1462758912-LAADS","original_format":"ECHO10","granule_size":"168.426548957825","browse_flag":true,"polygons":[["-46.759303 + -45.562856 -51.82372 -13.12498 -33.599233 -11.053038 -29.958243 -36.174206 + -46.759303 -45.562856"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1200.061.2017171201726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1200.061.2017171201726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1200.061.2017171201726.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1200.061.2017272134654.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1205.061.2017171201734.hdf","time_start":"2000-02-26T12:05:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073217","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T12:10:00.000Z","id":"G1462758914-LAADS","original_format":"ECHO10","granule_size":"162.661720275879","browse_flag":true,"polygons":[["-61.660224 + -63.726418 -69.655709 -12.317533 -51.429882 -12.447662 -46.718816 -45.38878 + -61.660224 -63.726418"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1205.061.2017171201734.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1205.061.2017171201734.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1205.061.2017171201734.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1205.061.2017272134955.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1210.061.2017171201740.hdf","time_start":"2000-02-26T12:10:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073218","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T12:15:00.000Z","id":"G1462758915-LAADS","original_format":"ECHO10","granule_size":"154.767853736877","browse_flag":true,"polygons":[["-70.406061 + -104.124482 -86.504792 25.469276 -69.141111 -11.421618 -61.736497 -63.295255 + -70.406061 -104.124482"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1210.061.2017171201740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1210.061.2017171201740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1210.061.2017171201740.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1210.061.2017272133450.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1215.061.2017171201721.hdf","time_start":"2000-02-26T12:15:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715072895","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T12:20:00.000Z","id":"G1462758662-LAADS","original_format":"ECHO10","granule_size":"73.5390586853027","browse_flag":true,"polygons":[["-65.383848 + -151.835148 -74.355317 145.491989 -85.8748 23.580871 -70.713751 -103.753374 + -65.383848 -151.835148"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1215.061.2017171201721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1215.061.2017171201721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1215.061.2017171201721.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1215.061.2017272132025.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1305.061.2017171201735.hdf","time_start":"2000-02-26T13:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073531","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T13:10:00.000Z","id":"G1462759106-LAADS","original_format":"ECHO10","granule_size":"86.7529296875","browse_flag":true,"polygons":[["72.330602 + -45.371781 64.234771 11.351341 71.242825 57.512668 87.11818 -142.591654 72.330602 + -45.371781"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1305.061.2017171201735.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1305.061.2017171201735.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1305.061.2017171201735.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1305.061.2017272132337.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1310.061.2017171202654.hdf","time_start":"2000-02-26T13:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073532","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T13:15:00.000Z","id":"G1462759109-LAADS","original_format":"ECHO10","granule_size":"160.401851654053","browse_flag":true,"polygons":[["54.572165 + -44.29623 49.834834 -9.71083 64.571432 10.83756 72.797227 -46.821443 54.572165 + -44.29623"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1310.061.2017171202654.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1310.061.2017171202654.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1310.061.2017171202654.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1310.061.2017272134520.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1315.061.2017171201754.hdf","time_start":"2000-02-26T13:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073533","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T13:20:00.000Z","id":"G1462759116-LAADS","original_format":"ECHO10","granule_size":"166.287053108215","browse_flag":true,"polygons":[["36.754454 + -45.863188 33.258927 -20.069135 50.082205 -10.238373 55.04146 -44.741099 36.754454 + -45.863188"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1315.061.2017171201754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1315.061.2017171201754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1315.061.2017171201754.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1315.061.2017272134959.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1320.061.2017171201754.hdf","time_start":"2000-02-26T13:20:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073219","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T13:25:00.000Z","id":"G1462758917-LAADS","original_format":"ECHO10","granule_size":"156.218573570251","browse_flag":true,"polygons":[["18.942481 + -48.406516 15.901573 -26.41391 33.433166 -20.459315 37.155675 -46.067942 18.942481 + -48.406516"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1320.061.2017171201754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1320.061.2017171201754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1320.061.2017171201754.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1320.061.2017272134420.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1325.061.2017171201738.hdf","time_start":"2000-02-26T13:25:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073220","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T13:30:00.000Z","id":"G1462758916-LAADS","original_format":"ECHO10","granule_size":"157.691670417786","browse_flag":true,"polygons":[["1.196378 + -51.750453 -1.806145 -30.901303 16.02396 -26.654737 19.231174 -48.504223 1.196378 + -51.750453"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1325.061.2017171201738.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1325.061.2017171201738.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1325.061.2017171201738.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1325.061.2017272133909.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1330.061.2017171201805.hdf","time_start":"2000-02-26T13:30:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073221","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T13:35:00.000Z","id":"G1462758918-LAADS","original_format":"ECHO10","granule_size":"168.159090995789","browse_flag":true,"polygons":[["-16.459467 + -56.190828 -19.761685 -34.245905 -1.732056 -30.89247 1.347973 -51.788359 -16.459467 + -56.190828"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1330.061.2017171201805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1330.061.2017171201805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1330.061.2017171201805.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1330.061.2017272133722.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1335.061.2017171201754.hdf","time_start":"2000-02-26T13:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073534","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T13:40:00.000Z","id":"G1462759113-LAADS","original_format":"ECHO10","granule_size":"160.304041862488","browse_flag":true,"polygons":[["-33.866536 + -62.601942 -37.878728 -36.679407 -19.620133 -33.957645 -16.368588 -56.170217 + -33.866536 -62.601942"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1335.061.2017171201754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1335.061.2017171201754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1335.061.2017171201754.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1335.061.2017272133512.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1340.061.2017171201757.hdf","time_start":"2000-02-26T13:40:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073222","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T13:45:00.000Z","id":"G1462758920-LAADS","original_format":"ECHO10","granule_size":"150.505198478699","browse_flag":true,"polygons":[["-50.320421 + -73.246881 -55.825137 -37.996214 -37.591752 -36.192191 -33.78447 -62.55313 + -50.320421 -73.246881"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1340.061.2017171201757.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1340.061.2017171201757.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1340.061.2017171201757.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1340.061.2017272133904.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1345.061.2017171201822.hdf","time_start":"2000-02-26T13:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073535","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T13:50:00.000Z","id":"G1462759110-LAADS","original_format":"ECHO10","granule_size":"165.403576850891","browse_flag":true,"polygons":[["-64.441036 + -94.96501 -73.606645 -35.80496 -55.401474 -37.252733 -50.300752 -73.022981 + -64.441036 -94.96501"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1345.061.2017171201822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1345.061.2017171201822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1345.061.2017171201822.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1345.061.2017272134626.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1350.061.2017171201811.hdf","time_start":"2000-02-26T13:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073536","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T13:55:00.000Z","id":"G1462759117-LAADS","original_format":"ECHO10","granule_size":"152.042057991028","browse_flag":true,"polygons":[["-70.558165 + -140.970082 -86.942592 74.570267 -73.066472 -34.833708 -64.554038 -94.485993 + -70.558165 -140.970082"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1350.061.2017171201811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1350.061.2017171201811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1350.061.2017171201811.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1350.061.2017272132834.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1355.061.2017171201735.hdf","time_start":"2000-02-26T13:55:00.000Z","updated":"2022-11-22T11:54:23.590Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073223","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T14:00:00.000Z","id":"G1462758926-LAADS","original_format":"ECHO10","granule_size":"45.2825860977173","browse_flag":true,"polygons":[["-62.73634 + 176.424026 -70.429481 122.12594 -86.857617 62.861889 -70.909289 -140.807197 + -62.73634 176.424026"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1355.061.2017171201735.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1355.061.2017171201735.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1355.061.2017171201735.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1355.061.2017272132108.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1445.061.2017171202416.hdf","time_start":"2000-02-26T14:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074194","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T14:50:00.000Z","id":"G1462759290-LAADS","original_format":"ECHO10","granule_size":"113.645740509033","browse_flag":true,"polygons":[["68.371952 + -69.406691 61.379492 -19.709457 70.993473 20.232582 85.82329 -102.159014 68.371952 + -69.406691"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1445.061.2017171202416.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1445.061.2017171202416.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1445.061.2017171202416.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1445.061.2017272132404.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1450.061.2017171201808.hdf","time_start":"2000-02-26T14:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073224","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T14:55:00.000Z","id":"G1462758925-LAADS","original_format":"ECHO10","granule_size":"162.167073249817","browse_flag":true,"polygons":[["50.593862 + -69.233237 46.245829 -37.311338 61.696008 -20.261969 68.859649 -70.356168 + 50.593862 -69.233237"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1450.061.2017171201808.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1450.061.2017171201808.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1450.061.2017171201808.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1450.061.2017272133904.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1455.061.2017171202426.hdf","time_start":"2000-02-26T14:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074551","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T15:00:00.000Z","id":"G1462759293-LAADS","original_format":"ECHO10","granule_size":"164.727327346802","browse_flag":true,"polygons":[["32.777622 + -71.08486 29.431402 -46.443864 46.475118 -37.812301 51.054619 -69.617673 32.777622 + -71.08486"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1455.061.2017171202426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1455.061.2017171202426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1455.061.2017171202426.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1455.061.2017272134332.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1500.061.2017171201817.hdf","time_start":"2000-02-26T15:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073537","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T15:05:00.000Z","id":"G1462759115-LAADS","original_format":"ECHO10","granule_size":"150.265573501587","browse_flag":true,"polygons":[["14.971688 + -73.801259 11.970705 -52.257804 29.592586 -46.800574 33.155402 -71.258359 + 14.971688 -73.801259"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1500.061.2017171201817.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1500.061.2017171201817.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1500.061.2017171201817.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1500.061.2017272133623.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1505.061.2017171201820.hdf","time_start":"2000-02-26T15:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073538","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T15:10:00.000Z","id":"G1462759114-LAADS","original_format":"ECHO10","granule_size":"163.727220535278","browse_flag":true,"polygons":[["-2.746917 + -77.344138 -5.784504 -56.462086 12.083829 -52.463463 15.231419 -73.880806 + -2.746917 -77.344138"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1505.061.2017171201820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1505.061.2017171201820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1505.061.2017171201820.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1505.061.2017272133126.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1510.061.2017171201807.hdf","time_start":"2000-02-26T15:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073225","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T15:15:00.000Z","id":"G1462758922-LAADS","original_format":"ECHO10","granule_size":"132.218673706055","browse_flag":true,"polygons":[["-20.369596 + -82.122794 -23.788407 -59.582663 -5.719605 -56.380349 -2.626705 -77.376998 + -20.369596 -82.122794"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1510.061.2017171201807.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1510.061.2017171201807.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1510.061.2017171201807.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1510.061.2017272132922.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1515.061.2017171201808.hdf","time_start":"2000-02-26T15:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073539","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T15:20:00.000Z","id":"G1462759122-LAADS","original_format":"ECHO10","granule_size":"159.99760055542","browse_flag":true,"polygons":[["-37.555196 + -89.164367 -41.803994 -61.805841 -23.615024 -59.253216 -20.27884 -82.09951 + -37.555196 -89.164367"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1515.061.2017171201808.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1515.061.2017171201808.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1515.061.2017171201808.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1515.061.2017272133527.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1520.061.2017171201812.hdf","time_start":"2000-02-26T15:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073540","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T15:25:00.000Z","id":"G1462759121-LAADS","original_format":"ECHO10","granule_size":"170.607611656189","browse_flag":true,"polygons":[["-53.772551 + -101.436615 -59.814421 -62.732293 -41.48752 -61.260963 -37.48295 -89.08416 + -53.772551 -101.436615"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1520.061.2017171201812.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1520.061.2017171201812.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1520.061.2017171201812.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1520.061.2017272133910.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1525.061.2017171202205.hdf","time_start":"2000-02-26T15:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073226","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T15:30:00.000Z","id":"G1462758923-LAADS","original_format":"ECHO10","granule_size":"163.434502601624","browse_flag":true,"polygons":[["-66.84233 + -127.5932 -77.517312 -58.144378 -59.360602 -61.915173 -53.770556 -101.165039 + -66.84233 -127.5932"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1525.061.2017171202205.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1525.061.2017171202205.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1525.061.2017171202205.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1525.061.2017272133912.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1530.061.2017171201824.hdf","time_start":"2000-02-26T15:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073227","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T15:35:00.000Z","id":"G1462758928-LAADS","original_format":"ECHO10","granule_size":"143.709191322327","browse_flag":true,"polygons":[["-69.902561 + -177.500995 -83.834156 82.287484 -76.954945 -57.1216 -67.010611 -127.067202 + -69.902561 -177.500995"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1530.061.2017171201824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1530.061.2017171201824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1530.061.2017171201824.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1530.061.2017272132130.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1535.061.2017171201748.hdf","time_start":"2000-02-26T15:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073228","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T15:40:00.000Z","id":"G1462758924-LAADS","original_format":"ECHO10","granule_size":"23.6655502319336","browse_flag":true,"polygons":[["-59.792289 + 145.9184 -66.490712 98.014427 -84.133792 76.769319 -70.279713 -177.577348 + -59.792289 145.9184"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1535.061.2017171201748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1535.061.2017171201748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1535.061.2017171201748.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1535.061.2017272131657.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1620.061.2017171201804.hdf","time_start":"2000-02-26T16:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073229","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T16:25:00.000Z","id":"G1462758927-LAADS","original_format":"ECHO10","granule_size":"22.6636323928833","browse_flag":true,"polygons":[["82.000097 + -103.301868 69.560637 -16.024578 68.373054 36.409957 78.881756 111.724606 + 82.000097 -103.301868"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1620.061.2017171201804.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1620.061.2017171201804.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1620.061.2017171201804.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1620.061.2017272131535.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1625.061.2017171201827.hdf","time_start":"2000-02-26T16:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073541","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T16:30:00.000Z","id":"G1462759118-LAADS","original_format":"ECHO10","granule_size":"140.722456932068","browse_flag":true,"polygons":[["64.415753 + -93.752747 58.272485 -49.638279 69.924754 -16.222181 82.383844 -107.061653 + 64.415753 -93.752747"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1625.061.2017171201827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1625.061.2017171201827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1625.061.2017171201827.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1625.061.2017272132640.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1630.061.2017171201839.hdf","time_start":"2000-02-26T16:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073542","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T16:35:00.000Z","id":"G1462759120-LAADS","original_format":"ECHO10","granule_size":"156.308867454529","browse_flag":true,"polygons":[["46.624134 + -94.270433 42.586513 -64.522468 58.567305 -50.199742 64.905569 -94.479262 + 46.624134 -94.270433"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1630.061.2017171201839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1630.061.2017171201839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1630.061.2017171201839.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1630.061.2017272134221.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1635.061.2017171201837.hdf","time_start":"2000-02-26T16:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073860","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T16:40:00.000Z","id":"G1462759233-LAADS","original_format":"ECHO10","granule_size":"160.745799064636","browse_flag":true,"polygons":[["28.806678 + -96.346911 25.579051 -72.658355 42.798678 -64.993109 47.070774 -94.591591 + 28.806678 -96.346911"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1635.061.2017171201837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1635.061.2017171201837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1635.061.2017171201837.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1635.061.2017272134042.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1640.061.2017171201843.hdf","time_start":"2000-02-26T16:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073861","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T16:45:00.000Z","id":"G1462759234-LAADS","original_format":"ECHO10","granule_size":"141.18588924408","browse_flag":true,"polygons":[["11.013112 + -99.236908 8.032432 -78.022107 25.728097 -72.983333 29.160556 -96.495561 11.013112 + -99.236908"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1640.061.2017171201843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1640.061.2017171201843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1640.061.2017171201843.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1640.061.2017272133146.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1645.061.2017171201831.hdf","time_start":"2000-02-26T16:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073543","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T16:50:00.000Z","id":"G1462759123-LAADS","original_format":"ECHO10","granule_size":"148.68740940094","browse_flag":true,"polygons":[["-6.682135 + -103.006465 -9.772327 -81.979396 8.137277 -78.194551 11.243804 -99.307496 + -6.682135 -103.006465"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1645.061.2017171201831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1645.061.2017171201831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1645.061.2017171201831.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1645.061.2017272132630.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1650.061.2017171201841.hdf","time_start":"2000-02-26T16:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073544","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T16:55:00.000Z","id":"G1462759124-LAADS","original_format":"ECHO10","granule_size":"156.906217575073","browse_flag":true,"polygons":[["-24.251885 + -108.154902 -27.80654 -84.873092 -9.704151 -81.815198 -6.58458 -103.018965 + -24.251885 -108.154902"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1650.061.2017171201841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1650.061.2017171201841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1650.061.2017171201841.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1650.061.2017272133235.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1655.061.2017171201840.hdf","time_start":"2000-02-26T16:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073862","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T17:00:00.000Z","id":"G1462759241-LAADS","original_format":"ECHO10","granule_size":"161.642932891846","browse_flag":true,"polygons":[["-41.27547 + -115.990763 -45.807183 -86.883521 -27.601206 -84.50227 -24.162487 -108.129114 + -41.27547 -115.990763"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1655.061.2017171201840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1655.061.2017171201840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1655.061.2017171201840.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1655.061.2017272134432.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1700.061.2017171201840.hdf","time_start":"2000-02-26T17:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073545","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T17:05:00.000Z","id":"G1462759127-LAADS","original_format":"ECHO10","granule_size":"166.097262382507","browse_flag":true,"polygons":[["-57.015217 + -130.156811 -63.696978 -87.287238 -45.459444 -86.293273 -41.214281 -115.87741 + -57.015217 -130.156811"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1700.061.2017171201840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1700.061.2017171201840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1700.061.2017171201840.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1700.061.2017272135423.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1705.061.2017171201842.hdf","time_start":"2000-02-26T17:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073546","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T17:10:00.000Z","id":"G1462759125-LAADS","original_format":"ECHO10","granule_size":"162.288323402405","browse_flag":true,"polygons":[["-68.757834 + -161.736559 -81.361558 -77.903491 -63.217999 -86.400096 -57.038756 -129.82633 + -68.757834 -161.736559"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1705.061.2017171201842.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1705.061.2017171201842.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1705.061.2017171201842.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1705.061.2017272134738.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1710.061.2017171201837.hdf","time_start":"2000-02-26T17:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073547","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T17:15:00.000Z","id":"G1462759126-LAADS","original_format":"ECHO10","granule_size":"114.411113739014","browse_flag":true,"polygons":[["-68.514853 + 147.084547 -80.100124 66.665436 -80.770708 -76.913109 -68.982387 -161.217003 + -68.514853 147.084547"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1710.061.2017171201837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1710.061.2017171201837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1710.061.2017171201837.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1710.061.2017272132615.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1800.061.2017171201852.hdf","time_start":"2000-02-26T18:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073230","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T18:05:00.000Z","id":"G1462758929-LAADS","original_format":"ECHO10","granule_size":"47.1055450439453","browse_flag":true,"polygons":[["78.146016 + -122.778981 67.796586 -50.804771 70.038003 1.519495 82.576106 94.088151 78.146016 + -122.778981"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1800.061.2017171201852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1800.061.2017171201852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1800.061.2017171201852.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1800.061.2017272131931.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1805.061.2017171201913.hdf","time_start":"2000-02-26T18:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073863","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T18:10:00.000Z","id":"G1462759242-LAADS","original_format":"ECHO10","granule_size":"148.819060325623","browse_flag":true,"polygons":[["60.457011 + -118.337864 54.979409 -78.682528 68.159653 -51.180755 78.594572 -124.968007 + 60.457011 -118.337864"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1805.061.2017171201913.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1805.061.2017171201913.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1805.061.2017171201913.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1805.061.2017272133230.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1810.061.2017171201911.hdf","time_start":"2000-02-26T18:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073231","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T18:15:00.000Z","id":"G1462758930-LAADS","original_format":"ECHO10","granule_size":"164.665024757385","browse_flag":true,"polygons":[["42.655839 + -119.338998 38.86937 -91.426001 55.253038 -79.2329 60.943949 -118.883855 42.655839 + -119.338998"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1810.061.2017171201911.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1810.061.2017171201911.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1810.061.2017171201911.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1810.061.2017272133136.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1815.061.2017171201906.hdf","time_start":"2000-02-26T18:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073548","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T18:20:00.000Z","id":"G1462759130-LAADS","original_format":"ECHO10","granule_size":"154.88965511322","browse_flag":true,"polygons":[["24.84092 + -121.647566 21.704201 -98.750579 39.067801 -91.873349 43.083667 -119.641256 + 24.84092 -121.647566"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1815.061.2017171201906.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1815.061.2017171201906.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1815.061.2017171201906.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1815.061.2017272132541.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1820.061.2017171202536.hdf","time_start":"2000-02-26T18:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074195","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T18:25:00.000Z","id":"G1462759278-LAADS","original_format":"ECHO10","granule_size":"152.922099113464","browse_flag":true,"polygons":[["7.061408 + -124.713043 4.084965 -103.726044 21.84219 -99.042896 25.167725 -121.77274 + 7.061408 -124.713043"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1820.061.2017171202536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1820.061.2017171202536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1820.061.2017171202536.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1820.061.2017272133756.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1825.061.2017171201900.hdf","time_start":"2000-02-26T18:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073549","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T18:30:00.000Z","id":"G1462759128-LAADS","original_format":"ECHO10","granule_size":"151.980966567993","browse_flag":true,"polygons":[["-10.623992 + -128.73075 -13.786271 -107.42735 4.176138 -103.828866 7.260655 -124.770594 + -10.623992 -128.73075"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1825.061.2017171201900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1825.061.2017171201900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1825.061.2017171201900.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1825.061.2017272132818.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1830.061.2017171201913.hdf","time_start":"2000-02-26T18:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073864","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T18:35:00.000Z","id":"G1462759239-LAADS","original_format":"ECHO10","granule_size":"153.05662727356","browse_flag":true,"polygons":[["-28.107926 + -134.309743 -31.822281 -110.126968 -13.689991 -107.209029 -10.529925 -128.724361 + -28.107926 -134.309743"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1830.061.2017171201913.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1830.061.2017171201913.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1830.061.2017171201913.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1830.061.2017272133600.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1835.061.2017171201920.hdf","time_start":"2000-02-26T18:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073865","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T18:40:00.000Z","id":"G1462759244-LAADS","original_format":"ECHO10","granule_size":"157.800434112549","browse_flag":true,"polygons":[["-44.936845 + -143.104592 -49.804766 -111.896654 -31.58502 -109.711732 -28.01982 -134.280665 + -44.936845 -143.104592"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1835.061.2017171201920.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1835.061.2017171201920.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1835.061.2017171201920.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1835.061.2017272133908.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1840.061.2017171201922.hdf","time_start":"2000-02-26T18:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073866","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T18:45:00.000Z","id":"G1462759246-LAADS","original_format":"ECHO10","granule_size":"163.978471755981","browse_flag":true,"polygons":[["-60.158516 + -159.765378 -67.65917 -111.5742 -49.426576 -111.247906 -44.888459 -142.952322 + -60.158516 -159.765378"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1840.061.2017171201922.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1840.061.2017171201922.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1840.061.2017171201922.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1840.061.2017272134529.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1845.061.2017171201921.hdf","time_start":"2000-02-26T18:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073550","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T18:50:00.000Z","id":"G1462759133-LAADS","original_format":"ECHO10","granule_size":"157.553009033203","browse_flag":true,"polygons":[["-70.028064 + 162.909076 -84.928365 -90.005115 -67.15556 -110.679597 -60.215123 -159.368632 + -70.028064 162.909076"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1845.061.2017171201921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1845.061.2017171201921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1845.061.2017171201921.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1845.061.2017272133953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1850.061.2017171201910.hdf","time_start":"2000-02-26T18:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073551","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T18:55:00.000Z","id":"G1462759135-LAADS","original_format":"ECHO10","granule_size":"82.4314098358154","browse_flag":true,"polygons":[["-66.523537 + 113.165073 -76.238526 45.649638 -84.302572 -89.661272 -70.308636 163.352214 + -66.523537 113.165073"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1850.061.2017171201910.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1850.061.2017171201910.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1850.061.2017171201910.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1850.061.2017272131408.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1940.061.2017171201915.hdf","time_start":"2000-02-26T19:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073552","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T19:45:00.000Z","id":"G1462759129-LAADS","original_format":"ECHO10","granule_size":"71.0151948928833","browse_flag":true,"polygons":[["74.31161 + -145.158654 65.600902 -83.910874 71.102988 -35.009929 85.967243 90.587876 + 74.31161 -145.158654"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1940.061.2017171201915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1940.061.2017171201915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1940.061.2017171201915.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1940.061.2017272131559.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1945.061.2017171201947.hdf","time_start":"2000-02-26T19:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073553","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T19:50:00.000Z","id":"G1462759131-LAADS","original_format":"ECHO10","granule_size":"156.393516540527","browse_flag":true,"polygons":[["56.488329 + -143.11753 51.539864 -107.03379 65.900387 -84.293883 74.788224 -146.690476 + 56.488329 -143.11753"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1945.061.2017171201947.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1945.061.2017171201947.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1945.061.2017171201947.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1945.061.2017272133021.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1950.061.2017171201945.hdf","time_start":"2000-02-26T19:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073867","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T19:55:00.000Z","id":"G1462759243-LAADS","original_format":"ECHO10","granule_size":"161.448668479919","browse_flag":true,"polygons":[["38.680047 + -144.526481 35.103683 -118.102496 51.801794 -107.590817 56.970433 -143.600971 + 38.680047 -144.526481"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1950.061.2017171201945.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1950.061.2017171201945.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1950.061.2017171201945.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1950.061.2017272134038.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.1955.061.2017171201941.hdf","time_start":"2000-02-26T19:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073554","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T20:00:00.000Z","id":"G1462759137-LAADS","original_format":"ECHO10","granule_size":"167.269418716431","browse_flag":true,"polygons":[["20.864265 + -146.98359 17.804037 -124.746911 35.287985 -118.521321 39.094229 -144.749037 + 20.864265 -146.98359"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1955.061.2017171201941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.1955.061.2017171201941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.1955.061.2017171201941.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.1955.061.2017272134919.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2000.061.2017171201939.hdf","time_start":"2000-02-26T20:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073868","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T20:05:00.000Z","id":"G1462759247-LAADS","original_format":"ECHO10","granule_size":"151.857534408569","browse_flag":true,"polygons":[["3.108664 + -150.234154 0.118261 -129.361597 17.927087 -124.98284 21.168306 -147.090152 + 3.108664 -150.234154"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2000.061.2017171201939.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2000.061.2017171201939.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2000.061.2017171201939.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2000.061.2017272133114.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2005.061.2017171201936.hdf","time_start":"2000-02-26T20:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073555","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T20:10:00.000Z","id":"G1462759136-LAADS","original_format":"ECHO10","granule_size":"147.450545310974","browse_flag":true,"polygons":[["-14.5582 + -154.529662 -17.810855 -132.823818 0.198112 -129.393601 3.276888 -150.279427 + -14.5582 -154.529662"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2005.061.2017171201936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2005.061.2017171201936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2005.061.2017171201936.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2005.061.2017272132710.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2010.061.2017171201940.hdf","time_start":"2000-02-26T20:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073869","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T20:15:00.000Z","id":"G1462759245-LAADS","original_format":"ECHO10","granule_size":"150.530115127563","browse_flag":true,"polygons":[["-31.939895 + -160.616961 -35.842279 -135.337867 -17.684141 -132.560954 -14.467631 -154.50794 + -31.939895 -160.616961"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2010.061.2017171201940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2010.061.2017171201940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2010.061.2017171201940.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2010.061.2017272133354.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2015.061.2017171201940.hdf","time_start":"2000-02-26T20:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073870","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T20:20:00.000Z","id":"G1462759250-LAADS","original_format":"ECHO10","granule_size":"159.034991264343","browse_flag":true,"polygons":[["-48.531976 + -170.578887 -53.802671 -136.822674 -35.573003 -134.87566 -31.854322 -160.579704 + -48.531976 -170.578887"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2015.061.2017171201940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2015.061.2017171201940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2015.061.2017171201940.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2015.061.2017272134101.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2020.061.2017171202003.hdf","time_start":"2000-02-26T20:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073871","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T20:25:00.000Z","id":"G1462759248-LAADS","original_format":"ECHO10","granule_size":"163.000126838684","browse_flag":true,"polygons":[["-63.073982 + 169.599776 -71.610954 -135.412629 -53.393978 -136.112676 -48.499791 -170.383654 + -63.073982 169.599776"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2020.061.2017171202003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2020.061.2017171202003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2020.061.2017171202003.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2020.061.2017272134217.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2025.061.2017171202002.hdf","time_start":"2000-02-26T20:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073872","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T20:30:00.000Z","id":"G1462759252-LAADS","original_format":"ECHO10","granule_size":"148.34374332428","browse_flag":true,"polygons":[["-70.585312 + 126.298974 -87.372226 -64.590516 -71.083384 -134.446557 -63.16897 170.058206 + -70.585312 126.298974"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2025.061.2017171202002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2025.061.2017171202002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2025.061.2017171202002.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2025.061.2017272132826.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2030.061.2017171201946.hdf","time_start":"2000-02-26T20:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073556","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T20:35:00.000Z","id":"G1462759140-LAADS","original_format":"ECHO10","granule_size":"54.9464988708496","browse_flag":true,"polygons":[["-64.160291 + 80.820719 -72.408294 22.669112 -86.909591 -73.374048 -70.973973 126.569675 + -64.160291 80.820719"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2030.061.2017171201946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2030.061.2017171201946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2030.061.2017171201946.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2030.061.2017272131447.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2120.061.2017171201952.hdf","time_start":"2000-02-26T21:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073557","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T21:25:00.000Z","id":"G1462759132-LAADS","original_format":"ECHO10","granule_size":"94.5372514724731","browse_flag":true,"polygons":[["70.372214 + -168.668046 62.866012 -115.555089 71.232832 -72.340897 86.995758 132.466597 + 70.372214 -168.668046"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2120.061.2017171201952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2120.061.2017171201952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2120.061.2017171201952.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2120.061.2017272131945.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2125.061.2017171201958.hdf","time_start":"2000-02-26T21:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073873","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T21:30:00.000Z","id":"G1462759253-LAADS","original_format":"ECHO10","granule_size":"159.558556556702","browse_flag":true,"polygons":[["52.604729 + -168.005141 48.073685 -134.797647 63.189817 -116.085464 70.858437 -169.763436 + 52.604729 -168.005141"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2125.061.2017171201958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2125.061.2017171201958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2125.061.2017171201958.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2125.061.2017272134210.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2130.061.2017171202003.hdf","time_start":"2000-02-26T21:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073558","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T21:35:00.000Z","id":"G1462759134-LAADS","original_format":"ECHO10","granule_size":"159.963982582092","browse_flag":true,"polygons":[["34.700582 + -169.721728 31.287469 -144.550487 48.310574 -135.308666 53.073811 -168.416418 + 34.700582 -169.721728"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2130.061.2017171202003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2130.061.2017171202003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2130.061.2017171202003.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2130.061.2017272135025.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2135.061.2017171201955.hdf","time_start":"2000-02-26T21:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073559","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T21:40:00.000Z","id":"G1462759138-LAADS","original_format":"ECHO10","granule_size":"147.452710151672","browse_flag":true,"polygons":[["16.893224 + -172.356913 13.875146 -150.613843 31.455692 -144.926672 35.092019 -169.911303 + 16.893224 -172.356913"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2135.061.2017171201955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2135.061.2017171201955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2135.061.2017171201955.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2135.061.2017272133100.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2140.061.2017171202005.hdf","time_start":"2000-02-26T21:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073874","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T21:45:00.000Z","id":"G1462759251-LAADS","original_format":"ECHO10","granule_size":"154.915686607361","browse_flag":true,"polygons":[["-0.839904 + -175.804188 -3.859137 -154.950726 13.992267 -150.835645 17.166887 -172.446968 + -0.839904 -175.804188"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2140.061.2017171202005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2140.061.2017171202005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2140.061.2017171202005.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2140.061.2017272133004.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2145.061.2017171202449.hdf","time_start":"2000-02-26T21:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073875","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T21:50:00.000Z","id":"G1462759254-LAADS","original_format":"ECHO10","granule_size":"154.975981712341","browse_flag":true,"polygons":[["-18.480276 + 179.587151 -21.840074 -158.180402 -3.789603 -154.905952 -0.704225 -175.838218 + -18.480276 179.587151"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2145.061.2017171202449.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2145.061.2017171202449.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2145.061.2017171202449.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2145.061.2017272133300.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2150.061.2017171202011.hdf","time_start":"2000-02-26T21:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074196","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T21:55:00.000Z","id":"G1462759281-LAADS","original_format":"ECHO10","granule_size":"157.706058502197","browse_flag":true,"polygons":[["-35.736444 + 172.884625 -39.862966 -160.502619 -21.682623 -157.873206 -18.390508 179.611129 + -35.736444 172.884625"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2150.061.2017171202011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2150.061.2017171202011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2150.061.2017171202011.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2150.061.2017272133329.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2155.061.2017171201954.hdf","time_start":"2000-02-26T21:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073560","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T22:00:00.000Z","id":"G1462759142-LAADS","original_format":"ECHO10","granule_size":"160.774563789368","browse_flag":true,"polygons":[["-52.041169 + 161.497562 -57.798267 -161.635687 -39.561789 -159.989869 -35.658559 172.947559 + -52.041169 161.497562"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2155.061.2017171201954.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2155.061.2017171201954.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2155.061.2017171201954.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2155.061.2017272133821.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2200.061.2017171202005.hdf","time_start":"2000-02-26T22:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073876","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T22:05:00.000Z","id":"G1462759261-LAADS","original_format":"ECHO10","granule_size":"155.802649497986","browse_flag":true,"polygons":[["-65.678547 + 137.696909 -75.545539 -158.444294 -57.360556 -160.856028 -52.028248 161.742735 + -65.678547 137.696909"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2200.061.2017171202005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2200.061.2017171202005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2200.061.2017171202005.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2200.061.2017272133723.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2205.061.2017171202005.hdf","time_start":"2000-02-26T22:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073877","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T22:10:00.000Z","id":"G1462759257-LAADS","original_format":"ECHO10","granule_size":"133.999514579773","browse_flag":true,"polygons":[["-70.332003 + 89.489627 -85.561976 -27.499122 -74.991487 -157.353787 -65.820429 138.206784 + -70.332003 89.489627"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2205.061.2017171202005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2205.061.2017171202005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2205.061.2017171202005.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2205.061.2017272131906.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2210.061.2017171201941.hdf","time_start":"2000-02-26T22:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073878","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T22:15:00.000Z","id":"G1462759259-LAADS","original_format":"ECHO10","granule_size":"32.9195184707642","browse_flag":true,"polygons":[["-61.348869 + 49.725651 -68.470541 -1.215953 -85.728165 -35.871449 -70.753972 89.493904 + -61.348869 49.725651"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2210.061.2017171201941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2210.061.2017171201941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2210.061.2017171201941.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2210.061.2017272131715.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2300.061.2017171202006.hdf","time_start":"2000-02-26T23:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073879","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T23:05:00.000Z","id":"G1462759256-LAADS","original_format":"ECHO10","granule_size":"123.488663673401","browse_flag":true,"polygons":[["66.414025 + 167.246822 59.867674 -146.023673 70.561087 -109.343282 84.212201 147.180622 + 66.414025 167.246822"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2300.061.2017171202006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2300.061.2017171202006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2300.061.2017171202006.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2300.061.2017272132106.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2305.061.2017171202012.hdf","time_start":"2000-02-26T23:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073561","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T23:10:00.000Z","id":"G1462759139-LAADS","original_format":"ECHO10","granule_size":"159.733483314514","browse_flag":true,"polygons":[["48.628253 + 167.006903 44.440038 -162.195287 60.172573 -146.580728 66.900502 166.377424 + 48.628253 167.006903"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2305.061.2017171202012.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2305.061.2017171202012.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2305.061.2017171202012.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2305.061.2017272134354.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2310.061.2017171202702.hdf","time_start":"2000-02-26T23:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074197","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T23:15:00.000Z","id":"G1462759286-LAADS","original_format":"ECHO10","granule_size":"159.716604232788","browse_flag":true,"polygons":[["30.807966 + 165.049745 27.524497 -170.811974 44.661054 -162.683497 49.08221 166.669059 + 30.807966 165.049745"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2310.061.2017171202702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2310.061.2017171202702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2310.061.2017171202702.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2310.061.2017272133957.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2315.061.2017171202022.hdf","time_start":"2000-02-26T23:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073880","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T23:20:00.000Z","id":"G1462759255-LAADS","original_format":"ECHO10","granule_size":"139.093253135681","browse_flag":true,"polygons":[["12.919589 + 162.22965 9.931672 -176.418962 27.679593 -171.153438 31.175264 164.88408 12.919589 + 162.22965"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2315.061.2017171202022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2315.061.2017171202022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2315.061.2017171202022.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2315.061.2017272132813.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2320.061.2017171203150.hdf","time_start":"2000-02-26T23:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074552","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T23:25:00.000Z","id":"G1462759292-LAADS","original_format":"ECHO10","granule_size":"148.85092830658","browse_flag":true,"polygons":[["-4.782028 + 158.570645 -7.845491 179.509543 10.040081 -176.605944 13.164614 162.154028 + -4.782028 158.570645"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2320.061.2017171203150.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2320.061.2017171203150.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2320.061.2017171203150.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2320.061.2017272132956.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2325.061.2017171202021.hdf","time_start":"2000-02-26T23:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073881","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T23:30:00.000Z","id":"G1462759262-LAADS","original_format":"ECHO10","granule_size":"161.721654891968","browse_flag":true,"polygons":[["-22.385095 + 153.604547 -25.872198 176.503946 -7.785043 179.632374 -4.679174 158.547126 + -22.385095 153.604547"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2325.061.2017171202021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2325.061.2017171202021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2325.061.2017171202021.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2325.061.2017272134021.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2330.061.2017171202239.hdf","time_start":"2000-02-26T23:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074198","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T23:35:00.000Z","id":"G1462759284-LAADS","original_format":"ECHO10","granule_size":"151.183304786682","browse_flag":true,"polygons":[["-39.492201 + 146.170732 -43.881618 174.388178 -25.682771 176.85644 -22.296444 153.631115 + -39.492201 146.170732"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2330.061.2017171202239.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2330.061.2017171202239.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2330.061.2017171202239.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2330.061.2017272133525.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2335.061.2017171203126.hdf","time_start":"2000-02-26T23:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074199","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T23:40:00.000Z","id":"G1462759287-LAADS","original_format":"ECHO10","granule_size":"166.339392662048","browse_flag":true,"polygons":[["-55.435947 + 133.004939 -61.787773 173.709113 -43.548882 174.95325 -39.423513 146.263073 + -55.435947 133.004939"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2335.061.2017171203126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2335.061.2017171203126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2335.061.2017171203126.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2335.061.2017272134358.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2340.061.2017171202031.hdf","time_start":"2000-02-26T23:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074200","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-26T23:45:00.000Z","id":"G1462759283-LAADS","original_format":"ECHO10","granule_size":"147.193005561829","browse_flag":true,"polygons":[["-67.861077 + 104.31348 -79.437254 -179.783801 -61.32156 174.566618 -55.447176 133.307878 + -67.861077 104.31348"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2340.061.2017171202031.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2340.061.2017171202031.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2340.061.2017171202031.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2340.061.2017272132910.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000057.2345.061.2017171202019.hdf","time_start":"2000-02-26T23:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074201","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-26T23:50:00.000Z","id":"G1462759285-LAADS","original_format":"ECHO10","granule_size":"121.780730247498","browse_flag":true,"polygons":[["-69.335623 + 53.366341 -81.988591 -35.957957 -78.847835 -178.538492 -68.094958 104.896057 + -69.335623 53.366341"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2345.061.2017171202019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000057.2345.061.2017171202019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/057/MOD02QKM.A2000057.2345.061.2017171202019.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/057/MOBRGB.A2000057.2345.061.2017272131738.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0035.061.2017171202641.hdf","time_start":"2000-02-27T00:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074879","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T00:40:00.000Z","id":"G1462762393-LAADS","original_format":"ECHO10","granule_size":"31.8816814422607","browse_flag":true,"polygons":[["80.097805 + 136.312599 68.759054 -144.836738 69.295891 -92.172706 80.784848 -9.111431 + 80.097805 136.312599"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0035.061.2017171202641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0035.061.2017171202641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0035.061.2017171202641.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0035.061.2017272131732.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0040.061.2017171202832.hdf","time_start":"2000-02-27T00:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074553","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T00:45:00.000Z","id":"G1462762364-LAADS","original_format":"ECHO10","granule_size":"143.856637954712","browse_flag":true,"polygons":[["62.44393 + 142.792499 56.662119 -175.52418 69.140243 -145.156023 80.526419 133.613266 + 62.44393 142.792499"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0040.061.2017171202832.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0040.061.2017171202832.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0040.061.2017171202832.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0040.061.2017272133515.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0045.061.2017171202035.hdf","time_start":"2000-02-27T00:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073882","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T00:50:00.000Z","id":"G1462762059-LAADS","original_format":"ECHO10","granule_size":"164.174889564514","browse_flag":true,"polygons":[["44.648253 + 141.945686 40.741076 170.743358 56.938142 -176.058958 62.931015 142.088744 + 44.648253 141.945686"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0045.061.2017171202035.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0045.061.2017171202035.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0045.061.2017171202035.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0045.061.2017272134002.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0050.061.2017171202045.hdf","time_start":"2000-02-27T00:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073883","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T00:55:00.000Z","id":"G1462762063-LAADS","original_format":"ECHO10","granule_size":"162.351939201355","browse_flag":true,"polygons":[["26.826746 + 139.769461 23.649025 163.032418 40.94568 170.28626 45.085245 141.657507 26.826746 + 139.769461"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0050.061.2017171202045.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0050.061.2017171202045.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0050.061.2017171202045.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0050.061.2017272135146.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0055.061.2017171202051.hdf","time_start":"2000-02-27T00:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074202","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T01:00:00.000Z","id":"G1462762234-LAADS","original_format":"ECHO10","granule_size":"140.398090362549","browse_flag":true,"polygons":[["9.038927 + 136.790419 6.062623 157.868911 23.792334 162.72452 27.16841 139.632712 9.038927 + 136.790419"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0055.061.2017171202051.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0055.061.2017171202051.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0055.061.2017171202051.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0055.061.2017272133442.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0100.061.2017171202036.hdf","time_start":"2000-02-27T01:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074203","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T01:05:00.000Z","id":"G1462762242-LAADS","original_format":"ECHO10","granule_size":"163.084613800049","browse_flag":true,"polygons":[["-8.740626 + 132.876699 -11.86555 154.018768 6.161331 157.728313 9.254561 136.723258 -8.740626 + 132.876699"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0100.061.2017171202036.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0100.061.2017171202036.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0100.061.2017171202036.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0100.061.2017272134518.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0105.061.2017171202044.hdf","time_start":"2000-02-27T01:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073884","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T01:10:00.000Z","id":"G1462762061-LAADS","original_format":"ECHO10","granule_size":"163.472075462341","browse_flag":true,"polygons":[["-26.269279 + 127.516368 -29.900835 151.215456 -11.781279 154.203878 -8.645425 132.878936 + -26.269279 127.516368"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0105.061.2017171202044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0105.061.2017171202044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0105.061.2017171202044.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0105.061.2017272133832.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0110.061.2017171202039.hdf","time_start":"2000-02-27T01:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074204","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T01:15:00.000Z","id":"G1462762236-LAADS","original_format":"ECHO10","granule_size":"161.709383964539","browse_flag":true,"polygons":[["-43.198749 + 119.206403 -47.894561 149.343797 -29.681148 151.628333 -26.181366 127.546189 + -43.198749 119.206403"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0110.061.2017171202039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0110.061.2017171202039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0110.061.2017171202039.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0110.061.2017272133653.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0115.061.2017171202048.hdf","time_start":"2000-02-27T01:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073885","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T01:20:00.000Z","id":"G1462762062-LAADS","original_format":"ECHO10","granule_size":"160.85698890686","browse_flag":true,"polygons":[["-58.67869 + 103.792542 -65.767055 149.280748 -47.53093 149.963224 -43.138138 119.322571 + -58.67869 103.792542"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0115.061.2017171202048.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0115.061.2017171202048.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0115.061.2017171202048.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0115.061.2017272134450.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0120.061.2017171202040.hdf","time_start":"2000-02-27T01:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074205","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T01:25:00.000Z","id":"G1462762235-LAADS","original_format":"ECHO10","granule_size":"145.716187477112","browse_flag":true,"polygons":[["-69.488485 + 69.376497 -83.228145 163.165908 -65.275138 150.163574 -58.720261 104.159297 + -69.488485 69.376497"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0120.061.2017171202040.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0120.061.2017171202040.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0120.061.2017171202040.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0120.061.2017272132849.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0125.061.2017171202748.hdf","time_start":"2000-02-27T01:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074554","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T01:30:00.000Z","id":"G1462762366-LAADS","original_format":"ECHO10","granule_size":"95.2689332962036","browse_flag":true,"polygons":[["-67.584483 + 18.684746 -78.16302 -55.08426 -82.590974 164.596575 -69.741351 69.867472 -67.584483 + 18.684746"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0125.061.2017171202748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0125.061.2017171202748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0125.061.2017171202748.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0125.061.2017272132246.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0215.061.2017171202044.hdf","time_start":"2000-02-27T02:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074206","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T02:20:00.000Z","id":"G1462762240-LAADS","original_format":"ECHO10","granule_size":"55.6181182861328","browse_flag":true,"polygons":[["76.197359 + 115.022239 66.707978 -178.831703 70.657976 -128.106719 84.445238 -21.791174 + 76.197359 115.022239"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0215.061.2017171202044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0215.061.2017171202044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0215.061.2017171202044.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0215.061.2017272131426.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0220.061.2017171202119.hdf","time_start":"2000-02-27T02:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074207","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T02:25:00.000Z","id":"G1462762243-LAADS","original_format":"ECHO10","granule_size":"155.826146125793","browse_flag":true,"polygons":[["58.476513 + 118.065023 53.281099 155.812221 67.068456 -179.277432 76.660656 113.270229 + 58.476513 118.065023"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0220.061.2017171202119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0220.061.2017171202119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0220.061.2017171202119.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0220.061.2017272132400.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0225.061.2017171202119.hdf","time_start":"2000-02-27T02:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074208","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T02:30:00.000Z","id":"G1462762239-LAADS","original_format":"ECHO10","granule_size":"164.933825492859","browse_flag":true,"polygons":[["40.670476 + 116.828109 36.993606 143.965287 53.544273 155.27097 58.958642 117.533805 40.670476 + 116.828109"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0225.061.2017171202119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0225.061.2017171202119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0225.061.2017171202119.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0225.061.2017272133035.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0230.061.2017171202124.hdf","time_start":"2000-02-27T02:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073886","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T02:35:00.000Z","id":"G1462762060-LAADS","original_format":"ECHO10","granule_size":"154.048855781555","browse_flag":true,"polygons":[["22.853068 + 114.447606 19.756396 137.00148 37.183128 143.539728 41.089227 116.571665 22.853068 + 114.447606"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0230.061.2017171202124.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0230.061.2017171202124.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0230.061.2017171202124.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0230.061.2017272133454.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0235.061.2017171202105.hdf","time_start":"2000-02-27T02:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074209","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T02:40:00.000Z","id":"G1462762246-LAADS","original_format":"ECHO10","granule_size":"163.919346809387","browse_flag":true,"polygons":[["5.083275 + 111.289186 2.103566 132.20069 19.888859 136.726326 23.16819 114.331149 5.083275 + 111.289186"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0235.061.2017171202105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0235.061.2017171202105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0235.061.2017171202105.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0235.061.2017272134018.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0240.061.2017171202116.hdf","time_start":"2000-02-27T02:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073887","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T02:45:00.000Z","id":"G1462762064-LAADS","original_format":"ECHO10","granule_size":"167.469799995422","browse_flag":true,"polygons":[["-12.59572 + 107.135086 -15.798686 128.617629 2.18944 132.130634 5.267146 111.236919 -12.59572 + 107.135086"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0240.061.2017171202116.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0240.061.2017171202116.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0240.061.2017171202116.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0240.061.2017272133649.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0245.061.2017171202102.hdf","time_start":"2000-02-27T02:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074210","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T02:50:00.000Z","id":"G1462762241-LAADS","original_format":"ECHO10","granule_size":"158.881646156311","browse_flag":true,"polygons":[["-30.11569 + 101.277531 -33.922578 126.000334 -15.687383 128.864653 -12.501718 107.147886 + -30.11569 101.277531"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0245.061.2017171202102.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0245.061.2017171202102.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0245.061.2017171202102.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0245.061.2017272133240.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0250.061.2017171202127.hdf","time_start":"2000-02-27T02:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073888","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T02:55:00.000Z","id":"G1462762065-LAADS","original_format":"ECHO10","granule_size":"156.498973846436","browse_flag":true,"polygons":[["-46.827951 + 91.902582 -51.894389 124.376472 -33.66834 126.443522 -30.028944 101.310568 + -46.827951 91.902582"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0250.061.2017171202127.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0250.061.2017171202127.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0250.061.2017171202127.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0250.061.2017272133453.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0255.061.2017171202119.hdf","time_start":"2000-02-27T02:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073889","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T03:00:00.000Z","id":"G1462762066-LAADS","original_format":"ECHO10","granule_size":"160.534099578857","browse_flag":true,"polygons":[["-61.718544 + 73.678221 -69.731056 125.066014 -51.500371 124.977549 -46.786676 92.074313 + -61.718544 73.678221"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0255.061.2017171202119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0255.061.2017171202119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0255.061.2017171202119.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0255.061.2017272133727.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0300.061.2017171202114.hdf","time_start":"2000-02-27T03:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074211","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T03:05:00.000Z","id":"G1462762247-LAADS","original_format":"ECHO10","granule_size":"137.515640258789","browse_flag":true,"polygons":[["-70.422395 + 33.165058 -86.548518 163.805321 -69.212219 126.104863 -61.791735 74.119484 + -70.422395 33.165058"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0300.061.2017171202114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0300.061.2017171202114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0300.061.2017171202114.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0300.061.2017272131744.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0305.061.2017171202109.hdf","time_start":"2000-02-27T03:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073890","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T03:10:00.000Z","id":"G1462762067-LAADS","original_format":"ECHO10","granule_size":"71.455099105835","browse_flag":true,"polygons":[["-65.359281 + -14.512351 -74.276393 -77.095471 -85.898902 162.140767 -70.75192 33.534102 + -65.359281 -14.512351"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0305.061.2017171202109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0305.061.2017171202109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0305.061.2017171202109.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0305.061.2017272131450.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0355.061.2017171202316.hdf","time_start":"2000-02-27T03:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074212","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T04:00:00.000Z","id":"G1462762245-LAADS","original_format":"ECHO10","granule_size":"85.6934146881104","browse_flag":true,"polygons":[["72.26049 + 91.967051 64.192136 148.75091 71.244573 -165.179708 87.082511 -3.558289 72.26049 + 91.967051"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0355.061.2017171202316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0355.061.2017171202316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0355.061.2017171202316.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0355.061.2017272132325.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0400.061.2017171202155.hdf","time_start":"2000-02-27T04:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074213","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T04:05:00.000Z","id":"G1462762244-LAADS","original_format":"ECHO10","granule_size":"156.619091033936","browse_flag":true,"polygons":[["54.502955 + 93.22641 49.786266 127.729594 64.539156 148.212836 72.743154 90.74291 54.502955 + 93.22641"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0400.061.2017171202155.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0400.061.2017171202155.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0400.061.2017171202155.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0400.061.2017272133339.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0405.061.2017171202155.hdf","time_start":"2000-02-27T04:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073891","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T04:10:00.000Z","id":"G1462762070-LAADS","original_format":"ECHO10","granule_size":"160.487023353577","browse_flag":true,"polygons":[["36.689981 + 91.729627 33.20196 117.4038 50.029737 127.211996 54.978314 92.895121 36.689981 + 91.729627"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0405.061.2017171202155.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0405.061.2017171202155.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0405.061.2017171202155.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0405.061.2017272133130.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0410.061.2017173013754.hdf","time_start":"2000-02-27T04:10:00.000Z","updated":"2022-11-22T12:01:52.990Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715488353","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T04:15:00.000Z","id":"G1462762848-LAADS","original_format":"ECHO10","granule_size":"158.110301017761","browse_flag":true,"polygons":[["18.887201 + 89.087759 15.841854 111.072998 33.375218 117.018135 37.084005 91.426047 18.887201 + 89.087759"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0410.061.2017173013754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0410.061.2017173013754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0410.061.2017173013754.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0410.061.2017272133945.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0415.061.2017173013531.hdf","time_start":"2000-02-27T04:15:00.000Z","updated":"2022-11-22T12:01:46.430Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715485985","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T04:20:00.000Z","id":"G1462762837-LAADS","original_format":"ECHO10","granule_size":"147.969197273254","browse_flag":true,"polygons":[["1.133842 + 85.739339 -1.867399 106.592572 15.963637 110.834427 19.167922 88.987906 1.133842 + 85.739339"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0415.061.2017173013531.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0415.061.2017173013531.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0415.061.2017173013531.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0415.061.2017272134125.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0420.061.2017173013753.hdf","time_start":"2000-02-27T04:20:00.000Z","updated":"2022-11-22T12:01:52.990Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715488354","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T04:25:00.000Z","id":"G1462762844-LAADS","original_format":"ECHO10","granule_size":"157.662448883057","browse_flag":true,"polygons":[["-16.520923 + 81.292881 -19.822885 103.2506 -1.792994 106.600215 1.285872 85.699394 -16.520923 + 81.292881"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0420.061.2017173013753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0420.061.2017173013753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0420.061.2017173013753.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0420.061.2017272134510.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0425.061.2017171202142.hdf","time_start":"2000-02-27T04:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074214","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T04:30:00.000Z","id":"G1462762249-LAADS","original_format":"ECHO10","granule_size":"152.607199668884","browse_flag":true,"polygons":[["-33.842094 + 74.912029 -37.850249 100.831958 -19.680997 103.534991 -16.430553 81.315978 + -33.842094 74.912029"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0425.061.2017171202142.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0425.061.2017171202142.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0425.061.2017171202142.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0425.061.2017272134513.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0430.061.2017171202145.hdf","time_start":"2000-02-27T04:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074215","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T04:35:00.000Z","id":"G1462762248-LAADS","original_format":"ECHO10","granule_size":"162.764476776123","browse_flag":true,"polygons":[["-50.376672 + 64.209263 -55.888028 99.513679 -37.565268 101.326918 -33.760485 74.96257 -50.376672 + 64.209263"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0430.061.2017171202145.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0430.061.2017171202145.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0430.061.2017171202145.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0430.061.2017272135205.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0435.061.2017173142737.hdf","time_start":"2000-02-27T04:35:00.000Z","updated":"2022-11-22T12:08:12.420Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2716139040","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T04:40:00.000Z","id":"G1462762854-LAADS","original_format":"ECHO10","granule_size":"152.993809700012","browse_flag":true,"polygons":[["-64.421179 + 42.579306 -73.583596 101.471418 -55.464154 100.131825 -50.353199 64.427765 + -64.421179 42.579306"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0435.061.2017173142737.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0435.061.2017173142737.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0435.061.2017173142737.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0435.061.2017272134728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0440.061.2017173143126.hdf","time_start":"2000-02-27T04:40:00.000Z","updated":"2022-11-22T12:08:12.420Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2716141735","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T04:45:00.000Z","id":"G1462762850-LAADS","original_format":"ECHO10","granule_size":"129.05570602417","browse_flag":true,"polygons":[["-70.558201 + -3.65716 -86.90037 -147.207333 -73.125443 102.74734 -64.595171 42.924375 -70.558201 + -3.65716"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0440.061.2017173143126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0440.061.2017173143126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0440.061.2017173143126.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0440.061.2017272132319.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0445.061.2017173142524.hdf","time_start":"2000-02-27T04:45:00.000Z","updated":"2022-11-22T12:08:08.330Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2716137550","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T04:50:00.000Z","id":"G1462762851-LAADS","original_format":"ECHO10","granule_size":"36.2309064865112","browse_flag":true,"polygons":[["-65.752997 + -38.136457 -74.963111 -102.280389 -87.017269 -157.20958 -70.909176 -3.500172 + -65.752997 -38.136457"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0445.061.2017173142524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0445.061.2017173142524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0445.061.2017173142524.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0445.061.2017272132255.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0535.061.2017171202128.hdf","time_start":"2000-02-27T05:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073892","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T05:40:00.000Z","id":"G1462762071-LAADS","original_format":"ECHO10","granule_size":"112.893481254578","browse_flag":true,"polygons":[["68.309365 + 68.084412 61.333627 117.711088 70.982615 157.550832 85.770387 35.811096 68.309365 + 68.084412"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0535.061.2017171202128.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0535.061.2017171202128.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0535.061.2017171202128.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0535.061.2017272133558.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0540.061.2017171202152.hdf","time_start":"2000-02-27T05:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074216","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T05:45:00.000Z","id":"G1462762254-LAADS","original_format":"ECHO10","granule_size":"155.90089225769","browse_flag":true,"polygons":[["50.532738 + 68.258652 46.193496 100.151592 61.652439 117.151746 68.798633 67.144256 50.532738 + 68.258652"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0540.061.2017171202152.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0540.061.2017171202152.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0540.061.2017171202152.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0540.061.2017272134700.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0545.061.2017171203026.hdf","time_start":"2000-02-27T05:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074880","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T05:50:00.000Z","id":"G1462762387-LAADS","original_format":"ECHO10","granule_size":"160.609825134277","browse_flag":true,"polygons":[["32.712271 + 66.471212 29.385227 91.00059 46.434206 99.607232 50.997607 67.963097 32.712271 + 66.471212"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0545.061.2017171203026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0545.061.2017171203026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0545.061.2017171203026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0545.061.2017272134156.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0550.061.2017171202146.hdf","time_start":"2000-02-27T05:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073893","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T05:55:00.000Z","id":"G1462762068-LAADS","original_format":"ECHO10","granule_size":"146.357044219971","browse_flag":true,"polygons":[["14.907982 + 63.690184 11.926773 85.154417 29.555158 90.596804 33.098656 66.236159 14.907982 + 63.690184"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0550.061.2017171202146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0550.061.2017171202146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0550.061.2017171202146.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0550.061.2017272133446.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0555.061.2017171202143.hdf","time_start":"2000-02-27T05:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074217","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T06:00:00.000Z","id":"G1462762253-LAADS","original_format":"ECHO10","granule_size":"147.859985351562","browse_flag":true,"polygons":[["-2.804967 + 60.140858 -5.843266 81.036195 12.025023 85.031283 15.171599 63.606977 -2.804967 + 60.140858"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0555.061.2017171202143.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0555.061.2017171202143.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0555.061.2017171202143.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0555.061.2017272135218.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0600.061.2017171202202.hdf","time_start":"2000-02-27T06:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074218","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T06:05:00.000Z","id":"G1462762250-LAADS","original_format":"ECHO10","granule_size":"159.254940986633","browse_flag":true,"polygons":[["-20.42623 + 55.361904 -23.84636 77.92026 -5.778383 81.11947 -2.685078 60.112813 -20.42623 + 55.361904"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0600.061.2017171202202.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0600.061.2017171202202.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0600.061.2017171202202.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0600.061.2017272135602.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0605.061.2017171202155.hdf","time_start":"2000-02-27T06:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074219","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T06:10:00.000Z","id":"G1462762252-LAADS","original_format":"ECHO10","granule_size":"157.357153892517","browse_flag":true,"polygons":[["-37.609883 + 48.312603 -41.861283 75.69987 -23.672655 78.248596 -20.336905 55.387268 -37.609883 + 48.312603"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0605.061.2017171202155.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0605.061.2017171202155.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0605.061.2017171202155.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0605.061.2017272134935.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0610.061.2017171202148.hdf","time_start":"2000-02-27T06:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074220","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T06:15:00.000Z","id":"G1462762256-LAADS","original_format":"ECHO10","granule_size":"163.741414070129","browse_flag":true,"polygons":[["-53.745254 + 36.094553 -59.781335 74.778038 -41.544289 76.235324 -37.537062 48.391592 -53.745254 + 36.094553"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0610.061.2017171202148.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0610.061.2017171202148.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0610.061.2017171202148.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0610.061.2017272135916.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0615.061.2017171202135.hdf","time_start":"2000-02-27T06:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073894","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T06:20:00.000Z","id":"G1462762072-LAADS","original_format":"ECHO10","granule_size":"153.494416236877","browse_flag":true,"polygons":[["-66.873519 + 9.789039 -77.584175 79.13477 -59.33187 75.484855 -53.744549 36.368943 -66.873519 + 9.789039"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0615.061.2017171202135.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0615.061.2017171202135.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0615.061.2017171202135.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0615.061.2017272135218.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0620.061.2017171202156.hdf","time_start":"2000-02-27T06:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074221","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T06:25:00.000Z","id":"G1462762258-LAADS","original_format":"ECHO10","granule_size":"135.25559425354","browse_flag":true,"polygons":[["-69.888272 + -40.158083 -83.75996 -140.566218 -76.996613 80.716938 -67.040531 10.328857 + -69.888272 -40.158083"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0620.061.2017171202156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0620.061.2017171202156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0620.061.2017171202156.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0620.061.2017272133240.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0625.061.2017171202134.hdf","time_start":"2000-02-27T06:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715073895","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T06:30:00.000Z","id":"G1462762069-LAADS","original_format":"ECHO10","granule_size":"21.2829904556274","browse_flag":true,"polygons":[["-59.748192 + -76.647768 -66.427266 -124.517901 -84.080747 -145.646031 -70.264132 -40.240137 + -59.748192 -76.647768"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0625.061.2017171202134.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0625.061.2017171202134.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0625.061.2017171202134.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0625.061.2017272133242.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0710.061.2017171202403.hdf","time_start":"2000-02-27T07:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074222","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T07:15:00.000Z","id":"G1462762259-LAADS","original_format":"ECHO10","granule_size":"23.8833808898926","browse_flag":true,"polygons":[["81.938493 + 34.346978 69.545582 121.30111 68.412387 173.778183 78.943285 -110.699728 81.938493 + 34.346978"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0710.061.2017171202403.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0710.061.2017171202403.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0710.061.2017171202403.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0710.061.2017272133232.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0715.061.2017171202425.hdf","time_start":"2000-02-27T07:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074555","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T07:20:00.000Z","id":"G1462762369-LAADS","original_format":"ECHO10","granule_size":"143.930562973022","browse_flag":true,"polygons":[["64.350832 + 43.762778 58.222765 87.787621 69.904961 121.104825 82.324499 30.622704 64.350832 + 43.762778"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0715.061.2017171202425.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0715.061.2017171202425.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0715.061.2017171202425.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0715.061.2017272134046.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0720.061.2017171202427.hdf","time_start":"2000-02-27T07:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074223","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T07:25:00.000Z","id":"G1462762255-LAADS","original_format":"ECHO10","granule_size":"160.826820373535","browse_flag":true,"polygons":[["46.560803 + 43.222305 42.529252 72.945952 58.5168 87.228857 64.841408 43.019402 46.560803 + 43.222305"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0720.061.2017171202427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0720.061.2017171202427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0720.061.2017171202427.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0720.061.2017272134512.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0725.061.2017171202427.hdf","time_start":"2000-02-27T07:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074556","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T07:30:00.000Z","id":"G1462762368-LAADS","original_format":"ECHO10","granule_size":"164.554830551147","browse_flag":true,"polygons":[["28.736843 + 41.167085 25.523804 64.796895 42.748463 72.443557 47.011997 42.93299 28.736843 + 41.167085"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0725.061.2017171202427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0725.061.2017171202427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0725.061.2017171202427.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0725.061.2017272134553.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0730.061.2017171202433.hdf","time_start":"2000-02-27T07:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074224","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T07:35:00.000Z","id":"G1462762260-LAADS","original_format":"ECHO10","granule_size":"144.874946594238","browse_flag":true,"polygons":[["10.947999 + 38.288389 7.970226 59.46757 25.666633 64.50057 29.09389 41.03698 10.947999 + 38.288389"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0730.061.2017171202433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0730.061.2017171202433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0730.061.2017171202433.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0730.061.2017272133509.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0735.061.2017171202440.hdf","time_start":"2000-02-27T07:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074557","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T07:40:00.000Z","id":"G1462762367-LAADS","original_format":"ECHO10","granule_size":"154.554904937744","browse_flag":true,"polygons":[["-6.747429 + 34.507842 -9.838384 55.519715 8.073809 59.302631 11.174468 38.211074 -6.747429 + 34.507842"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0735.061.2017171202440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0735.061.2017171202440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0735.061.2017171202440.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0735.061.2017272134242.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0740.061.2017171202427.hdf","time_start":"2000-02-27T07:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074558","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T07:45:00.000Z","id":"G1462762371-LAADS","original_format":"ECHO10","granule_size":"155.383333206177","browse_flag":true,"polygons":[["-24.315926 + 29.352841 -27.870225 52.626213 -9.766571 55.682878 -6.651987 34.493799 -24.315926 + 29.352841"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0740.061.2017171202427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0740.061.2017171202427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0740.061.2017171202427.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0740.061.2017272134157.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0745.061.2017171203033.hdf","time_start":"2000-02-27T07:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075208","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T07:50:00.000Z","id":"G1462762397-LAADS","original_format":"ECHO10","granule_size":"158.904218673706","browse_flag":true,"polygons":[["-41.338589 + 21.504275 -45.870519 50.620379 -27.662796 52.999191 -24.229197 29.375743 -41.338589 + 21.504275"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0745.061.2017171203033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0745.061.2017171203033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0745.061.2017171203033.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0745.061.2017272135416.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0750.061.2017171202440.hdf","time_start":"2000-02-27T07:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074225","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T07:55:00.000Z","id":"G1462762257-LAADS","original_format":"ECHO10","granule_size":"163.31535243988","browse_flag":true,"polygons":[["-57.06088 + 7.274942 -63.75678 50.220051 -45.519564 51.208091 -41.268402 21.590537 -57.06088 + 7.274942"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0750.061.2017171202440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0750.061.2017171202440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0750.061.2017171202440.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0750.061.2017272135610.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0755.061.2017171202440.hdf","time_start":"2000-02-27T07:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074559","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T08:00:00.000Z","id":"G1462762373-LAADS","original_format":"ECHO10","granule_size":"157.792073249817","browse_flag":true,"polygons":[["-68.744198 + -24.158722 -81.349607 59.121458 -63.282057 50.950579 -57.086919 7.610903 -68.744198 + -24.158722"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0755.061.2017171202440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0755.061.2017171202440.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0755.061.2017171202440.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0755.061.2017272134819.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0800.061.2017171202436.hdf","time_start":"2000-02-27T08:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074560","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T08:05:00.000Z","id":"G1462762376-LAADS","original_format":"ECHO10","granule_size":"116.630105018616","browse_flag":true,"polygons":[["-68.48671 + -75.556213 -80.026664 -156.168767 -80.719579 61.018422 -68.966272 -23.622966 + -68.48671 -75.556213"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0800.061.2017171202436.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0800.061.2017171202436.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0800.061.2017171202436.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0800.061.2017272133304.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0850.061.2017171203931.hdf","time_start":"2000-02-27T08:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075867","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T08:55:00.000Z","id":"G1462762527-LAADS","original_format":"ECHO10","granule_size":"48.9875535964966","browse_flag":true,"polygons":[["78.077342 + 14.823403 67.763593 86.533009 70.066419 138.835946 82.643634 -128.254811 78.077342 + 14.823403"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0850.061.2017171203931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0850.061.2017171203931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0850.061.2017171203931.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0850.061.2017272133344.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0855.061.2017171204011.hdf","time_start":"2000-02-27T08:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075868","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T09:00:00.000Z","id":"G1462762529-LAADS","original_format":"ECHO10","granule_size":"154.525631904602","browse_flag":true,"polygons":[["60.386691 + 19.165641 54.917971 58.758482 68.121019 86.163277 78.523761 12.604726 60.386691 + 19.165641"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0855.061.2017171204011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0855.061.2017171204011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0855.061.2017171204011.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0855.061.2017272134332.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0900.061.2017171204003.hdf","time_start":"2000-02-27T09:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076197","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T09:05:00.000Z","id":"G1462762694-LAADS","original_format":"ECHO10","granule_size":"166.061947822571","browse_flag":true,"polygons":[["42.58411 + 18.139015 38.804775 46.036071 55.195721 58.194142 60.873612 18.593385 42.58411 + 18.139015"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0900.061.2017171204003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0900.061.2017171204003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0900.061.2017171204003.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0900.061.2017272134914.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0905.061.2017171204001.hdf","time_start":"2000-02-27T09:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075869","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T09:10:00.000Z","id":"G1462762531-LAADS","original_format":"ECHO10","granule_size":"161.364964485168","browse_flag":true,"polygons":[["24.76659 + 15.862445 21.637261 38.720294 39.004323 45.582996 43.01379 17.876893 24.76659 + 15.862445"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0905.061.2017171204001.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0905.061.2017171204001.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0905.061.2017171204001.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0905.061.2017272134537.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0910.061.2017171205634.hdf","time_start":"2000-02-27T09:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077251","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T09:15:00.000Z","id":"G1462762823-LAADS","original_format":"ECHO10","granule_size":"155.159183502197","browse_flag":true,"polygons":[["6.990191 + 12.798727 4.013247 33.770069 21.770657 38.448515 25.093853 15.744945 6.990191 + 12.798727"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0910.061.2017171205634.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0910.061.2017171205634.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0910.061.2017171205634.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0910.061.2017272133340.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0915.061.2017171204429.hdf","time_start":"2000-02-27T09:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075870","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T09:20:00.000Z","id":"G1462762530-LAADS","original_format":"ECHO10","granule_size":"154.993934631348","browse_flag":true,"polygons":[["-10.692921 + 8.756798 -13.855368 30.046955 4.10803 33.643988 7.189966 12.722547 -10.692921 + 8.756798"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0915.061.2017171204429.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0915.061.2017171204429.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0915.061.2017171204429.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0915.061.2017272134054.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0920.061.2017171203950.hdf","time_start":"2000-02-27T09:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076198","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T09:25:00.000Z","id":"G1462762696-LAADS","original_format":"ECHO10","granule_size":"163.774201393127","browse_flag":true,"polygons":[["-28.173155 + 3.166656 -31.888582 27.346742 -13.758518 30.265869 -10.595748 8.761936 -28.173155 + 3.166656"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0920.061.2017171203950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0920.061.2017171203950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0920.061.2017171203950.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0920.061.2017272134813.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0925.061.2017171204045.hdf","time_start":"2000-02-27T09:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075871","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T09:30:00.000Z","id":"G1462762534-LAADS","original_format":"ECHO10","granule_size":"164.612071990967","browse_flag":true,"polygons":[["-44.99793 + -5.645221 -49.871995 25.608723 -31.655444 27.789665 -28.083851 3.198728 -44.99793 + -5.645221"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0925.061.2017171204045.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0925.061.2017171204045.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0925.061.2017171204045.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0925.061.2017272135936.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0930.061.2017171204004.hdf","time_start":"2000-02-27T09:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075872","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T09:35:00.000Z","id":"G1462762532-LAADS","original_format":"ECHO10","granule_size":"165.496143341064","browse_flag":true,"polygons":[["-60.206725 + -22.356871 -67.725958 25.937635 -49.494413 26.252841 -44.948865 -5.494424 + -60.206725 -22.356871"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0930.061.2017171204004.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0930.061.2017171204004.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0930.061.2017171204004.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0930.061.2017272140202.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0935.061.2017171204021.hdf","time_start":"2000-02-27T09:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075873","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T09:40:00.000Z","id":"G1462762543-LAADS","original_format":"ECHO10","granule_size":"156.656633377075","browse_flag":true,"polygons":[["-70.041732 + -59.780084 -84.999506 47.605748 -67.225029 26.767722 -60.266215 -21.955198 + -70.041732 -59.780084"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0935.061.2017171204021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0935.061.2017171204021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0935.061.2017171204021.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0935.061.2017272134428.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.0940.061.2017171204005.hdf","time_start":"2000-02-27T09:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076199","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T09:45:00.000Z","id":"G1462762695-LAADS","original_format":"ECHO10","granule_size":"88.9501523971558","browse_flag":true,"polygons":[["-66.533013 + -109.281417 -76.249774 -177.151548 -84.326851 48.742046 -70.321773 -59.331735 + -66.533013 -109.281417"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0940.061.2017171204005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.0940.061.2017171204005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.0940.061.2017171204005.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.0940.061.2017272133400.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1030.061.2017171204011.hdf","time_start":"2000-02-27T10:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075874","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T10:35:00.000Z","id":"G1462762535-LAADS","original_format":"ECHO10","granule_size":"81.2393455505371","browse_flag":true,"polygons":[["74.244135 + -7.611165 65.510076 53.542516 71.057068 102.240539 86.02693 -131.147087 74.244135 + -7.611165"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1030.061.2017171204011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1030.061.2017171204011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1030.061.2017171204011.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1030.061.2017272133605.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1035.061.2017171204120.hdf","time_start":"2000-02-27T10:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076200","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T10:40:00.000Z","id":"G1462762699-LAADS","original_format":"ECHO10","granule_size":"153.66069316864","browse_flag":true,"polygons":[["56.414315 + -5.601983 51.475383 30.408655 65.854463 53.065905 74.716282 -9.12121 56.414315 + -5.601983"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1035.061.2017171204120.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1035.061.2017171204120.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1035.061.2017171204120.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1035.061.2017272135743.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1040.061.2017171204039.hdf","time_start":"2000-02-27T10:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075875","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T10:45:00.000Z","id":"G1462762533-LAADS","original_format":"ECHO10","granule_size":"156.110780715942","browse_flag":true,"polygons":[["38.607164 + -7.022513 35.029867 19.381951 51.731389 29.868974 56.895423 -6.086666 38.607164 + -7.022513"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1040.061.2017171204039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1040.061.2017171204039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1040.061.2017171204039.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1040.061.2017272134728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1045.061.2017171204357.hdf","time_start":"2000-02-27T10:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077252","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T10:50:00.000Z","id":"G1462762822-LAADS","original_format":"ECHO10","granule_size":"157.437247276306","browse_flag":true,"polygons":[["20.793028 + -9.479667 17.726979 12.761254 35.210141 18.97912 39.01716 -7.239534 20.793028 + -9.479667"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1045.061.2017171204357.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1045.061.2017171204357.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1045.061.2017171204357.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1045.061.2017272133844.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1050.061.2017171202940.hdf","time_start":"2000-02-27T10:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075515","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T10:55:00.000Z","id":"G1462762395-LAADS","original_format":"ECHO10","granule_size":"156.981346130371","browse_flag":true,"polygons":[["3.037419 + -12.744614 0.046562 8.121444 17.855853 12.495016 21.095471 -9.596546 3.037419 + -12.744614"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1050.061.2017171202940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1050.061.2017171202940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1050.061.2017171202940.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1050.061.2017272134400.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1055.061.2017171203401.hdf","time_start":"2000-02-27T10:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075209","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T11:00:00.000Z","id":"G1462762398-LAADS","original_format":"ECHO10","granule_size":"150.581093788147","browse_flag":true,"polygons":[["-14.629051 + -17.044082 -17.884202 4.674418 0.124709 8.101442 3.204127 -12.788377 -14.629051 + -17.044082"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1055.061.2017171203401.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1055.061.2017171203401.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1055.061.2017171203401.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1055.061.2017272135014.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1100.061.2017171205023.hdf","time_start":"2000-02-27T11:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076201","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T11:05:00.000Z","id":"G1462762698-LAADS","original_format":"ECHO10","granule_size":"150.211692810059","browse_flag":true,"polygons":[["-32.006755 + -23.144385 -35.914514 2.160447 -17.756636 4.935351 -14.537464 -17.024144 -32.006755 + -23.144385"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1100.061.2017171205023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1100.061.2017171205023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1100.061.2017171205023.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1100.061.2017272134939.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1105.061.2017171204004.hdf","time_start":"2000-02-27T11:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075876","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T11:10:00.000Z","id":"G1462762537-LAADS","original_format":"ECHO10","granule_size":"169.18768119812","browse_flag":true,"polygons":[["-48.594883 + -33.126193 -53.873822 0.682333 -35.644618 2.624408 -31.922712 -23.103563 -48.594883 + -33.126193"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1105.061.2017171204004.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1105.061.2017171204004.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1105.061.2017171204004.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1105.061.2017272140422.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1110.061.2017171204029.hdf","time_start":"2000-02-27T11:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075877","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T11:15:00.000Z","id":"G1462762547-LAADS","original_format":"ECHO10","granule_size":"165.333570480347","browse_flag":true,"polygons":[["-63.121048 + -53.013193 -71.682767 2.068999 -53.465412 1.368689 -48.562106 -32.93151 -63.121048 + -53.013193"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1110.061.2017171204029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1110.061.2017171204029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1110.061.2017171204029.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1110.061.2017272140546.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1115.061.2017171204038.hdf","time_start":"2000-02-27T11:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075878","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T11:20:00.000Z","id":"G1462762539-LAADS","original_format":"ECHO10","granule_size":"153.960318565369","browse_flag":true,"polygons":[["-70.589254 + -96.417037 -87.397397 74.419586 -71.155606 3.036089 -63.219795 -52.54603 -70.589254 + -96.417037"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1115.061.2017171204038.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1115.061.2017171204038.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1115.061.2017171204038.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1115.061.2017272134305.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1120.061.2017171204021.hdf","time_start":"2000-02-27T11:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075879","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T11:25:00.000Z","id":"G1462762536-LAADS","original_format":"ECHO10","granule_size":"58.8417615890503","browse_flag":true,"polygons":[["-64.071139 + -141.705643 -72.345305 160.183289 -86.927978 65.48754 -70.919618 -96.14341 + -64.071139 -141.705643"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1120.061.2017171204021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1120.061.2017171204021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1120.061.2017171204021.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1120.061.2017272133431.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1235.061.2017171204006.hdf","time_start":"2000-02-27T12:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075880","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T12:40:00.000Z","id":"G1462762546-LAADS","original_format":"ECHO10","granule_size":"147.299686431885","browse_flag":true,"polygons":[["-18.555281 + -42.915594 -21.914087 -20.681095 -4.039284 -17.450609 -0.956164 -38.367808 + -18.555281 -42.915594"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1235.061.2017171204006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1235.061.2017171204006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1235.061.2017171204006.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1235.061.2017272135103.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1240.061.2017171204124.hdf","time_start":"2000-02-27T12:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075881","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T12:45:00.000Z","id":"G1462762538-LAADS","original_format":"ECHO10","granule_size":"150.415107727051","browse_flag":true,"polygons":[["-35.809726 + -49.628604 -39.938118 -23.003411 -21.756142 -20.376555 -18.46667 -42.891715 + -35.809726 -49.628604"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1240.061.2017171204124.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1240.061.2017171204124.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1240.061.2017171204124.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1240.061.2017272135459.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1245.061.2017171204058.hdf","time_start":"2000-02-27T12:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076202","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T12:50:00.000Z","id":"G1462762704-LAADS","original_format":"ECHO10","granule_size":"155.855735778809","browse_flag":true,"polygons":[["-52.104987 + -61.058277 -57.871285 -24.129638 -39.634669 -22.490106 -35.728366 -49.578632 + -52.104987 -61.058277"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1245.061.2017171204058.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1245.061.2017171204058.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1245.061.2017171204058.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1245.061.2017272140931.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1250.061.2017171204033.hdf","time_start":"2000-02-27T12:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076203","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T12:55:00.000Z","id":"G1462762705-LAADS","original_format":"ECHO10","granule_size":"162.977005958557","browse_flag":true,"polygons":[["-65.723323 + -84.940807 -75.617762 -20.909155 -57.43325 -23.355569 -52.092316 -60.812531 + -65.723323 -84.940807"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1250.061.2017171204033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1250.061.2017171204033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1250.061.2017171204033.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1250.061.2017272140439.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1255.061.2017171204223.hdf","time_start":"2000-02-27T12:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076204","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T13:00:00.000Z","id":"G1462762706-LAADS","original_format":"ECHO10","granule_size":"148.644870758057","browse_flag":true,"polygons":[["-70.322593 + -133.229999 -85.513174 110.769141 -75.066673 -19.88148 -65.868382 -84.426579 + -70.322593 -133.229999"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1255.061.2017171204223.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1255.061.2017171204223.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1255.061.2017171204223.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1255.061.2017272134329.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1300.061.2017171204422.hdf","time_start":"2000-02-27T13:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075882","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T13:05:00.000Z","id":"G1462762540-LAADS","original_format":"ECHO10","granule_size":"32.3725967407227","browse_flag":true,"polygons":[["-61.257147 + -172.785623 -68.409739 136.437203 -85.705109 102.851999 -70.687158 -133.188579 + -61.257147 -172.785623"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1300.061.2017171204422.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1300.061.2017171204422.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1300.061.2017171204422.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1300.061.2017272133443.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1350.061.2017171204052.hdf","time_start":"2000-02-27T13:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075883","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T13:55:00.000Z","id":"G1462762541-LAADS","original_format":"ECHO10","granule_size":"134.567699432373","browse_flag":true,"polygons":[["66.336243 + -55.27577 59.809052 -8.619439 70.541949 27.934751 84.137794 -75.093394 66.336243 + -55.27577"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1350.061.2017171204052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1350.061.2017171204052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1350.061.2017171204052.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1350.061.2017272181311.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1355.061.2017171204052.hdf","time_start":"2000-02-27T13:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076205","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T14:00:00.000Z","id":"G1462762712-LAADS","original_format":"ECHO10","granule_size":"160.25414276123","browse_flag":true,"polygons":[["48.551194 + -55.496202 44.370716 -24.736237 60.112637 -9.174001 66.826787 -56.110887 48.551194 + -55.496202"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1355.061.2017171204052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1355.061.2017171204052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1355.061.2017171204052.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1355.061.2017272183857.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1400.061.2017171204028.hdf","time_start":"2000-02-27T14:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076206","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T14:05:00.000Z","id":"G1462762707-LAADS","original_format":"ECHO10","granule_size":"161.856400489807","browse_flag":true,"polygons":[["30.73303 + -57.456603 27.451558 -33.330617 44.590396 -25.220737 49.006 -55.833543 30.73303 + -57.456603"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1400.061.2017171204028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1400.061.2017171204028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1400.061.2017171204028.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1400.061.2017272183133.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1405.061.2017171204054.hdf","time_start":"2000-02-27T14:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076207","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T14:10:00.000Z","id":"G1462762713-LAADS","original_format":"ECHO10","granule_size":"160.370513916016","browse_flag":true,"polygons":[["12.84558 + -60.279323 9.858366 -38.930428 27.607117 -33.673092 31.100335 -57.621885 12.84558 + -60.279323"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1405.061.2017171204054.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1405.061.2017171204054.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1405.061.2017171204054.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1405.061.2017272182757.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1410.061.2017171204030.hdf","time_start":"2000-02-27T14:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075884","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T14:15:00.000Z","id":"G1462762542-LAADS","original_format":"ECHO10","granule_size":"161.881030082703","browse_flag":true,"polygons":[["-4.854445 + -63.941387 -7.918919 -42.995914 9.966402 -39.116087 13.090453 -60.354356 -4.854445 + -63.941387"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1410.061.2017171204030.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1410.061.2017171204030.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1410.061.2017171204030.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1410.061.2017272182803.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1415.061.2017171204114.hdf","time_start":"2000-02-27T14:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076208","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T14:20:00.000Z","id":"G1462762709-LAADS","original_format":"ECHO10","granule_size":"166.015125274658","browse_flag":true,"polygons":[["-22.46611 + -68.87059 -25.944983 -45.994824 -7.859018 -42.870355 -4.75887 -63.923354 -22.46611 + -68.87059"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1415.061.2017171204114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1415.061.2017171204114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1415.061.2017171204114.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1415.061.2017272182323.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1420.061.2017171204059.hdf","time_start":"2000-02-27T14:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075885","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T14:25:00.000Z","id":"G1462762545-LAADS","original_format":"ECHO10","granule_size":"164.277727127075","browse_flag":true,"polygons":[["-39.575574 + -76.30987 -43.959763 -48.110534 -25.755934 -45.644993 -22.382815 -68.843124 + -39.575574 -76.30987"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1420.061.2017171204059.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1420.061.2017171204059.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1420.061.2017171204059.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1420.061.2017272182317.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1425.061.2017171204109.hdf","time_start":"2000-02-27T14:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075886","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T14:30:00.000Z","id":"G1462762544-LAADS","original_format":"ECHO10","granule_size":"167.843539237976","browse_flag":true,"polygons":[["-55.498223 + -89.55925 -61.860335 -48.777426 -43.621564 -47.543698 -39.493212 -76.265412 + -55.498223 -89.55925"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1425.061.2017171204109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1425.061.2017171204109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1425.061.2017171204109.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1425.061.2017272183317.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1430.061.2017171204146.hdf","time_start":"2000-02-27T14:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075887","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T14:35:00.000Z","id":"G1462762553-LAADS","original_format":"ECHO10","granule_size":"160.336747169495","browse_flag":true,"polygons":[["-67.897965 + -118.353576 -79.509037 -42.19478 -61.393819 -47.925428 -55.508936 -89.257476 + -67.897965 -118.353576"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1430.061.2017171204146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1430.061.2017171204146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1430.061.2017171204146.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1430.061.2017272182812.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1435.061.2017171204127.hdf","time_start":"2000-02-27T14:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075888","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T14:40:00.000Z","id":"G1462762552-LAADS","original_format":"ECHO10","granule_size":"132.108045578003","browse_flag":true,"polygons":[["-69.272049 + -169.285415 -81.935588 101.979536 -78.932827 -41.144389 -68.096049 -117.823438 + -69.272049 -169.285415"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1435.061.2017171204127.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1435.061.2017171204127.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1435.061.2017171204127.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1435.061.2017272180953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1525.061.2017171202453.hdf","time_start":"2000-02-27T15:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074561","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T15:30:00.000Z","id":"G1462762375-LAADS","original_format":"ECHO10","granule_size":"35.5291833877563","browse_flag":true,"polygons":[["80.02601 + -86.133608 68.725492 -7.510489 69.325162 45.14127 80.851426 128.567239 80.02601 + -86.133608"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1525.061.2017171202453.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1525.061.2017171202453.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1525.061.2017171202453.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1525.061.2017272180506.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1530.061.2017171204111.hdf","time_start":"2000-02-27T15:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076209","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T15:35:00.000Z","id":"G1462762710-LAADS","original_format":"ECHO10","granule_size":"142.416305541992","browse_flag":true,"polygons":[["62.374539 + -79.760915 56.593284 -38.062109 69.09055 -7.807951 80.447302 -88.929582 62.374539 + -79.760915"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1530.061.2017171204111.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1530.061.2017171204111.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1530.061.2017171204111.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1530.061.2017272181331.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1535.061.2017171204115.hdf","time_start":"2000-02-27T15:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076210","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T15:40:00.000Z","id":"G1462762708-LAADS","original_format":"ECHO10","granule_size":"158.231822967529","browse_flag":true,"polygons":[["44.577076 + -80.56377 40.676858 -51.786075 56.87933 -38.626549 62.863505 -80.415141 44.577076 + -80.56377"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1535.061.2017171204115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1535.061.2017171204115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1535.061.2017171204115.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1535.061.2017272182820.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1540.061.2017171204131.hdf","time_start":"2000-02-27T15:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076211","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T15:45:00.000Z","id":"G1462762720-LAADS","original_format":"ECHO10","granule_size":"154.193322181702","browse_flag":true,"polygons":[["26.759028 + -82.738939 23.582503 -59.478676 40.879807 -52.238642 45.015771 -80.848742 + 26.759028 -82.738939"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1540.061.2017171204131.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1540.061.2017171204131.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1540.061.2017171204131.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1540.061.2017272182830.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1545.061.2017171205126.hdf","time_start":"2000-02-27T15:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076562","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T15:50:00.000Z","id":"G1462762761-LAADS","original_format":"ECHO10","granule_size":"149.963850975037","browse_flag":true,"polygons":[["8.973246 + -85.720839 5.996871 -64.635954 23.725983 -59.787403 27.100506 -82.877029 8.973246 + -85.720839"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1545.061.2017171205126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1545.061.2017171205126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1545.061.2017171205126.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1545.061.2017272182821.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1550.061.2017171204114.hdf","time_start":"2000-02-27T15:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076212","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T15:55:00.000Z","id":"G1462762718-LAADS","original_format":"ECHO10","granule_size":"164.144614219666","browse_flag":true,"polygons":[["-8.805433 + -89.637032 -11.930347 -68.487208 6.09609 -64.781776 9.188184 -85.787021 -8.805433 + -89.637032"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1550.061.2017171204114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1550.061.2017171204114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1550.061.2017171204114.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1550.061.2017272183140.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1555.061.2017171204122.hdf","time_start":"2000-02-27T15:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076213","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T16:00:00.000Z","id":"G1462762714-LAADS","original_format":"ECHO10","granule_size":"151.383748054504","browse_flag":true,"polygons":[["-26.33085 + -95.009582 -29.967203 -71.270652 -11.848381 -68.287469 -8.709095 -89.639725 + -26.33085 -95.009582"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1555.061.2017171204122.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1555.061.2017171204122.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1555.061.2017171204122.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1555.061.2017272182423.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1600.061.2017171204249.hdf","time_start":"2000-02-27T16:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076563","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T16:05:00.000Z","id":"G1462762764-LAADS","original_format":"ECHO10","granule_size":"166.378875732422","browse_flag":true,"polygons":[["-43.254573 + -103.338886 -47.958757 -73.152163 -29.74562 -70.872086 -26.241247 -94.981891 + -43.254573 -103.338886"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1600.061.2017171204249.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1600.061.2017171204249.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1600.061.2017171204249.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1600.061.2017272182829.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1605.061.2017171204050.hdf","time_start":"2000-02-27T16:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076214","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T16:10:00.000Z","id":"G1462762711-LAADS","original_format":"ECHO10","granule_size":"166.46009349823","browse_flag":true,"polygons":[["-58.732409 + -118.775479 -65.829556 -73.199273 -47.595219 -72.531133 -43.19821 -103.204523 + -58.732409 -118.775479"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1605.061.2017171204050.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1605.061.2017171204050.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1605.061.2017171204050.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1605.061.2017272183902.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1610.061.2017171204114.hdf","time_start":"2000-02-27T16:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076215","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T16:15:00.000Z","id":"G1462762715-LAADS","original_format":"ECHO10","granule_size":"158.116026878357","browse_flag":true,"polygons":[["-69.511109 + -153.292848 -83.278432 -58.914342 -65.336977 -72.259308 -58.772651 -118.409452 + -69.511109 -153.292848"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1610.061.2017171204114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1610.061.2017171204114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1610.061.2017171204114.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1610.061.2017272182904.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1615.061.2017171204053.hdf","time_start":"2000-02-27T16:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075889","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T16:20:00.000Z","id":"G1462762550-LAADS","original_format":"ECHO10","granule_size":"101.758732795715","browse_flag":true,"polygons":[["-67.553968 + 156.03726 -78.112391 82.804502 -82.675836 -58.191321 -69.766296 -152.807283 + -67.553968 156.03726"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1615.061.2017171204053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1615.061.2017171204053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1615.061.2017171204053.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1615.061.2017272180643.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1705.061.2017171205609.hdf","time_start":"2000-02-27T17:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076904","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T17:10:00.000Z","id":"G1462762816-LAADS","original_format":"ECHO10","granule_size":"61.0857105255127","browse_flag":true,"polygons":[["76.134159 + -107.463455 66.672052 -41.461036 70.674944 9.204489 84.497359 116.105715 76.134159 + -107.463455"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1705.061.2017171205609.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1705.061.2017171205609.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1705.061.2017171205609.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1705.061.2017272180622.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1710.061.2017171204132.hdf","time_start":"2000-02-27T17:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076216","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T17:15:00.000Z","id":"G1462762719-LAADS","original_format":"ECHO10","granule_size":"152.509052276611","browse_flag":true,"polygons":[["58.408937 + -104.444936 53.245494 -66.795659 67.062341 -41.968621 76.600547 -109.214329 + 58.408937 -104.444936"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1710.061.2017171204132.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1710.061.2017171204132.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1710.061.2017171204132.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1710.061.2017272182445.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1715.061.2017171204156.hdf","time_start":"2000-02-27T17:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076217","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T17:20:00.000Z","id":"G1462762716-LAADS","original_format":"ECHO10","granule_size":"160.823445320129","browse_flag":true,"polygons":[["40.606346 + -105.635054 36.937853 -78.570035 53.494214 -67.294791 58.898404 -104.904706 + 40.606346 -105.635054"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1715.061.2017171204156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1715.061.2017171204156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1715.061.2017171204156.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1715.061.2017272182930.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1720.061.2017171204146.hdf","time_start":"2000-02-27T17:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075890","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T17:25:00.000Z","id":"G1462762549-LAADS","original_format":"ECHO10","granule_size":"151.307607650757","browse_flag":true,"polygons":[["22.795923 + -108.059707 19.696032 -85.509434 37.123412 -78.98215 41.023045 -105.934826 + 22.795923 -108.059707"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1720.061.2017171204146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1720.061.2017171204146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1720.061.2017171204146.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1720.061.2017272181158.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1725.061.2017171202545.hdf","time_start":"2000-02-27T17:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074562","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T17:30:00.000Z","id":"G1462762372-LAADS","original_format":"ECHO10","granule_size":"153.877024650574","browse_flag":true,"polygons":[["5.023757 + -111.22112 2.043035 -90.302799 19.828258 -85.782544 23.107085 -108.177243 + 5.023757 -111.22112"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1725.061.2017171202545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1725.061.2017171202545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1725.061.2017171202545.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1725.061.2017272182427.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1730.061.2017171202559.hdf","time_start":"2000-02-27T17:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074563","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T17:35:00.000Z","id":"G1462762377-LAADS","original_format":"ECHO10","granule_size":"154.402129173279","browse_flag":true,"polygons":[["-12.653871 + -115.374903 -15.858829 -93.879734 2.128557 -90.370261 5.20682 -111.269502 + -12.653871 -115.374903"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1730.061.2017171202559.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1730.061.2017171202559.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1730.061.2017171202559.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1730.061.2017272182500.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1735.061.2017171202536.hdf","time_start":"2000-02-27T17:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074564","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T17:40:00.000Z","id":"G1462762374-LAADS","original_format":"ECHO10","granule_size":"151.894884109497","browse_flag":true,"polygons":[["-30.172309 + -121.238585 -33.982565 -96.496474 -15.747003 -93.635299 -12.560844 -115.361147 + -30.172309 -121.238585"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1735.061.2017171202536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1735.061.2017171202536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1735.061.2017171202536.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1735.061.2017272182145.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1740.061.2017171202543.hdf","time_start":"2000-02-27T17:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074565","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T17:45:00.000Z","id":"G1462762384-LAADS","original_format":"ECHO10","granule_size":"163.512521743774","browse_flag":true,"polygons":[["-46.880022 + -130.632494 -51.952867 -98.118425 -33.727165 -96.056033 -30.08505 -121.20776 + -46.880022 -130.632494"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1740.061.2017171202543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1740.061.2017171202543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1740.061.2017171202543.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1740.061.2017272183157.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1745.061.2017171202555.hdf","time_start":"2000-02-27T17:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074566","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T17:50:00.000Z","id":"G1462762380-LAADS","original_format":"ECHO10","granule_size":"157.558820724487","browse_flag":true,"polygons":[["-61.761002 + -148.89851 -69.784134 -97.271918 -51.558174 -97.438784 -46.840082 -130.45756 + -61.761002 -148.89851"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1745.061.2017171202555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1745.061.2017171202555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1745.061.2017171202555.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1745.061.2017272183341.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1750.061.2017171202540.hdf","time_start":"2000-02-27T17:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074567","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T17:55:00.000Z","id":"G1462762378-LAADS","original_format":"ECHO10","granule_size":"156.128663063049","browse_flag":true,"polygons":[["-70.42943 + 170.495161 -86.577673 -57.712744 -69.267377 -96.327657 -61.837276 -148.467823 + -70.42943 170.495161"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1750.061.2017171202540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1750.061.2017171202540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1750.061.2017171202540.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1750.061.2017272182853.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1755.061.2017171202539.hdf","time_start":"2000-02-27T17:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074568","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T18:00:00.000Z","id":"G1462762379-LAADS","original_format":"ECHO10","granule_size":"68.8515548706055","browse_flag":true,"polygons":[["-65.306045 + 122.915508 -74.223761 60.532808 -85.957881 -60.02033 -70.738492 170.854678 + -65.306045 122.915508"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1755.061.2017171202539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1755.061.2017171202539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1755.061.2017171202539.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1755.061.2017272180445.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1845.061.2017171204109.hdf","time_start":"2000-02-27T18:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076218","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T18:50:00.000Z","id":"G1462762722-LAADS","original_format":"ECHO10","granule_size":"90.6361141204834","browse_flag":true,"polygons":[["72.200203 + -130.524133 64.166466 -73.877309 71.266709 -27.859705 87.093283 135.031919 + 72.200203 -130.524133"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1845.061.2017171204109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1845.061.2017171204109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1845.061.2017171204109.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1845.061.2017272180746.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1850.061.2017171204149.hdf","time_start":"2000-02-27T18:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076219","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T18:55:00.000Z","id":"G1462762717-LAADS","original_format":"ECHO10","granule_size":"156.756789207458","browse_flag":true,"polygons":[["54.446772 + -129.277832 49.727463 -94.787338 64.487114 -74.358683 72.683752 -131.741913 + 54.446772 -129.277832"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1850.061.2017171204149.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1850.061.2017171204149.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1850.061.2017171204149.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1850.061.2017272182337.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1855.061.2017171204217.hdf","time_start":"2000-02-27T18:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075891","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T19:00:00.000Z","id":"G1462762548-LAADS","original_format":"ECHO10","granule_size":"166.059100151062","browse_flag":true,"polygons":[["36.637596 + -130.870754 33.147559 -105.113856 49.97735 -95.324905 54.918638 -129.739253 + 36.637596 -130.870754"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1855.061.2017171204217.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1855.061.2017171204217.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1855.061.2017171204217.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1855.061.2017272182335.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1900.061.2017171204146.hdf","time_start":"2000-02-27T19:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076220","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T19:05:00.000Z","id":"G1462762723-LAADS","original_format":"ECHO10","granule_size":"161.965641975403","browse_flag":true,"polygons":[["18.818982 + -133.416754 15.793938 -111.481023 33.332164 -105.548775 37.039192 -131.072028 + 18.818982 -133.416754"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1900.061.2017171204146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1900.061.2017171204146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1900.061.2017171204146.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1900.061.2017272183417.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1905.061.2017171204156.hdf","time_start":"2000-02-27T19:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076221","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T19:10:00.000Z","id":"G1462762721-LAADS","original_format":"ECHO10","granule_size":"153.761070251465","browse_flag":true,"polygons":[["1.078148 + -136.767018 -1.924094 -115.914313 15.907193 -111.676325 19.11103 -133.515233 + 1.078148 -136.767018"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1905.061.2017171204156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1905.061.2017171204156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1905.061.2017171204156.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1905.061.2017272182844.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1910.061.2017171205746.hdf","time_start":"2000-02-27T19:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077570","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T19:15:00.000Z","id":"G1462762830-LAADS","original_format":"ECHO10","granule_size":"151.384419441223","browse_flag":true,"polygons":[["-16.577359 + -141.216004 -19.881046 -119.2545 -1.849985 -115.90627 1.228782 -136.804178 + -16.577359 -141.216004"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1910.061.2017171205746.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1910.061.2017171205746.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1910.061.2017171205746.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1910.061.2017272182459.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1915.061.2017171204301.hdf","time_start":"2000-02-27T19:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076222","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T19:20:00.000Z","id":"G1462762724-LAADS","original_format":"ECHO10","granule_size":"156.441124916077","browse_flag":true,"polygons":[["-33.896322 + -147.608393 -37.908222 -121.673601 -19.73818 -118.971718 -16.486225 -141.195057 + -33.896322 -147.608393"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1915.061.2017171204301.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1915.061.2017171204301.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1915.061.2017171204301.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1915.061.2017272183241.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1920.061.2017171204156.hdf","time_start":"2000-02-27T19:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076223","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T19:25:00.000Z","id":"G1462762729-LAADS","original_format":"ECHO10","granule_size":"151.851421356201","browse_flag":true,"polygons":[["-50.428251 + -158.329169 -55.945751 -122.989677 -37.622718 -121.178935 -33.815942 -147.55536 + -50.428251 -158.329169"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1920.061.2017171204156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1920.061.2017171204156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1920.061.2017171204156.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1920.061.2017272183222.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1925.061.2017171204129.hdf","time_start":"2000-02-27T19:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075892","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T19:30:00.000Z","id":"G1462762551-LAADS","original_format":"ECHO10","granule_size":"162.593425750732","browse_flag":true,"polygons":[["-64.518303 + 179.823019 -73.723581 -120.74405 -55.52032 -122.243284 -50.405157 -158.110427 + -64.518303 179.823019"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1925.061.2017171204129.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1925.061.2017171204129.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1925.061.2017171204129.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1925.061.2017272184621.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1930.061.2017171204352.hdf","time_start":"2000-02-27T19:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076905","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T19:35:00.000Z","id":"G1462762813-LAADS","original_format":"ECHO10","granule_size":"150.303596496582","browse_flag":true,"polygons":[["-70.553661 + 133.673724 -86.867094 -8.716512 -73.182311 -119.72719 -64.637506 -179.687004 + -70.553661 133.673724"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1930.061.2017171204352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1930.061.2017171204352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1930.061.2017171204352.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1930.061.2017272182513.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.1935.061.2017171204124.hdf","time_start":"2000-02-27T19:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076224","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T19:40:00.000Z","id":"G1462762725-LAADS","original_format":"ECHO10","granule_size":"40.2505226135254","browse_flag":true,"polygons":[["-62.690029 + 91.146808 -70.300281 37.111201 -86.797478 -20.329056 -70.960887 133.806078 + -62.690029 91.146808"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1935.061.2017171204124.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.1935.061.2017171204124.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.1935.061.2017171204124.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.1935.061.2017272180450.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2025.061.2017171204717.hdf","time_start":"2000-02-27T20:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076564","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T20:30:00.000Z","id":"G1462762763-LAADS","original_format":"ECHO10","granule_size":"114.989893913269","browse_flag":true,"polygons":[["68.252045 + -154.375836 61.28764 -104.865634 70.969959 -65.126265 85.732755 173.937148 + 68.252045 -154.375836"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2025.061.2017171204717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2025.061.2017171204717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2025.061.2017171204717.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2025.061.2017272181300.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2030.061.2017171204224.hdf","time_start":"2000-02-27T20:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075893","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T20:35:00.000Z","id":"G1462762557-LAADS","original_format":"ECHO10","granule_size":"159.925165176392","browse_flag":true,"polygons":[["50.473195 + -154.243908 46.138377 -122.385337 61.60735 -105.429752 68.739218 -155.342852 + 50.473195 -154.243908"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2030.061.2017171204224.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2030.061.2017171204224.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2030.061.2017171204224.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2030.061.2017272182807.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2035.061.2017171204347.hdf","time_start":"2000-02-27T20:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076565","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T20:40:00.000Z","id":"G1462762772-LAADS","original_format":"ECHO10","granule_size":"164.325952529907","browse_flag":true,"polygons":[["32.656228 + -156.08845 29.315753 -131.478956 46.365022 -122.87907 50.935307 -154.610698 + 32.656228 -156.08845"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2035.061.2017171204347.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2035.061.2017171204347.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2035.061.2017171204347.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2035.061.2017272184859.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2040.061.2017171204211.hdf","time_start":"2000-02-27T20:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076225","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T20:45:00.000Z","id":"G1462762748-LAADS","original_format":"ECHO10","granule_size":"155.724723815918","browse_flag":true,"polygons":[["14.851997 + -158.809985 11.852596 -137.278851 29.476635 -131.834858 33.034347 -156.260326 + 14.851997 -158.809985"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2040.061.2017171204211.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2040.061.2017171204211.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2040.061.2017171204211.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2040.061.2017272183349.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2045.061.2017171204238.hdf","time_start":"2000-02-27T20:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076906","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T20:50:00.000Z","id":"G1462762834-LAADS","original_format":"ECHO10","granule_size":"144.714810371399","browse_flag":true,"polygons":[["-2.865265 + -162.364958 -5.904127 -141.477535 11.965512 -137.484875 15.111274 -158.893952 + -2.865265 -162.364958"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2045.061.2017171204238.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2045.061.2017171204238.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2045.061.2017171204238.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2045.061.2017272182411.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2050.061.2017171204212.hdf","time_start":"2000-02-27T20:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076566","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T20:55:00.000Z","id":"G1462762774-LAADS","original_format":"ECHO10","granule_size":"158.467102050781","browse_flag":true,"polygons":[["-20.4885 + -167.148566 -23.909657 -144.590463 -5.839653 -141.392164 -2.746917 -162.390924 + -20.4885 -167.148566"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2050.061.2017171204212.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2050.061.2017171204212.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2050.061.2017171204212.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2050.061.2017272183414.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2055.061.2017171204320.hdf","time_start":"2000-02-27T20:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076226","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T21:00:00.000Z","id":"G1462762726-LAADS","original_format":"ECHO10","granule_size":"153.406774520874","browse_flag":true,"polygons":[["-37.670592 + -174.212259 -41.925658 -146.811828 -23.735239 -144.263094 -20.398425 -167.125174 + -37.670592 -174.212259"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2055.061.2017171204320.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2055.061.2017171204320.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2055.061.2017171204320.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2055.061.2017272183410.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2100.061.2017171204227.hdf","time_start":"2000-02-27T21:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076567","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T21:05:00.000Z","id":"G1462762773-LAADS","original_format":"ECHO10","granule_size":"163.674139976501","browse_flag":true,"polygons":[["-53.802343 + 173.541976 -59.846954 -147.725662 -41.608445 -146.27106 -37.598619 -174.130773 + -53.802343 173.541976"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2100.061.2017171204227.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2100.061.2017171204227.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2100.061.2017171204227.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2100.061.2017272184235.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2105.061.2017171204223.hdf","time_start":"2000-02-27T21:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076227","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T21:10:00.000Z","id":"G1462762728-LAADS","original_format":"ECHO10","granule_size":"160.916015625","browse_flag":true,"polygons":[["-66.909591 + 147.148657 -77.641647 -143.119593 -59.394297 -146.928367 -53.800128 173.81342 + -66.909591 147.148657"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2105.061.2017171204223.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2105.061.2017171204223.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2105.061.2017171204223.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2105.061.2017272184024.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2110.061.2017171204142.hdf","time_start":"2000-02-27T21:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076568","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T21:15:00.000Z","id":"G1462762769-LAADS","original_format":"ECHO10","granule_size":"133.502377510071","browse_flag":true,"polygons":[["-69.870232 + 97.160765 -83.717677 -2.420082 -77.069721 -141.92485 -67.078943 147.679175 + -69.870232 97.160765"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2110.061.2017171204142.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2110.061.2017171204142.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2110.061.2017171204142.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2110.061.2017272181044.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2115.061.2017171204132.hdf","time_start":"2000-02-27T21:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076569","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T21:20:00.000Z","id":"G1462762777-LAADS","original_format":"ECHO10","granule_size":"20.1449174880981","browse_flag":true,"polygons":[["-59.730305 + 60.678592 -66.359788 13.003603 -84.026166 -7.801264 -70.300217 97.022728 -59.730305 + 60.678592"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2115.061.2017171204132.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2115.061.2017171204132.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2115.061.2017171204132.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2115.061.2017272180714.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2200.061.2017171204235.hdf","time_start":"2000-02-27T22:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076570","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T22:05:00.000Z","id":"G1462762771-LAADS","original_format":"ECHO10","granule_size":"24.8698482513428","browse_flag":true,"polygons":[["81.875422 + 172.021054 69.530986 -101.378915 68.409144 -48.644959 78.918566 26.780914 + 81.875422 172.021054"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2200.061.2017171204235.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2200.061.2017171204235.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2200.061.2017171204235.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2200.061.2017272180710.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2205.061.2017171204200.hdf","time_start":"2000-02-27T22:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076228","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T22:10:00.000Z","id":"G1462762727-LAADS","original_format":"ECHO10","granule_size":"139.414483070374","browse_flag":true,"polygons":[["64.287711 + -178.72188 58.167743 -134.775549 69.876272 -101.561531 82.265738 168.31776 + 64.287711 -178.72188"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2205.061.2017171204200.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2205.061.2017171204200.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2205.061.2017171204200.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2205.061.2017272181423.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2210.061.2017171204515.hdf","time_start":"2000-02-27T22:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077253","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T22:15:00.000Z","id":"G1462762838-LAADS","original_format":"ECHO10","granule_size":"159.05606174469","browse_flag":true,"polygons":[["46.492867 + -179.27237 42.466637 -149.586837 58.463096 -135.339907 64.778808 -179.456816 + 46.492867 -179.27237"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2210.061.2017171204515.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2210.061.2017171204515.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2210.061.2017171204515.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2210.061.2017272183307.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2215.061.2017171204500.hdf","time_start":"2000-02-27T22:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076571","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T22:20:00.000Z","id":"G1462762775-LAADS","original_format":"ECHO10","granule_size":"151.838453292847","browse_flag":true,"polygons":[["28.675464 + 178.652386 25.452867 -157.695515 42.678564 -150.057071 46.941812 -179.580094 + 28.675464 178.652386"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2215.061.2017171204500.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2215.061.2017171204500.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2215.061.2017171204500.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2215.061.2017272183011.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2220.061.2017171204154.hdf","time_start":"2000-02-27T22:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076229","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T22:25:00.000Z","id":"G1462762731-LAADS","original_format":"ECHO10","granule_size":"139.179977416992","browse_flag":true,"polygons":[["10.881771 + 175.755982 7.902669 -163.046871 25.601581 -158.019545 29.029194 178.505939 + 10.881771 175.755982"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2220.061.2017171204154.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2220.061.2017171204154.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2220.061.2017171204154.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2220.061.2017272182352.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2225.061.2017171204441.hdf","time_start":"2000-02-27T22:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076230","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T22:30:00.000Z","id":"G1462762733-LAADS","original_format":"ECHO10","granule_size":"148.489073753357","browse_flag":true,"polygons":[["-6.814033 + 171.97684 -9.905364 -166.997159 8.007179 -163.217439 11.111191 175.685427 + -6.814033 171.97684"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2225.061.2017171204441.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2225.061.2017171204441.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2225.061.2017171204441.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2225.061.2017272182646.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2230.061.2017171204314.hdf","time_start":"2000-02-27T22:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076231","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T22:35:00.000Z","id":"G1462762738-LAADS","original_format":"ECHO10","granule_size":"158.722793579102","browse_flag":true,"polygons":[["-24.381905 + 166.813454 -27.940596 -169.885434 -9.836505 -166.830279 -6.716823 171.964588 + -24.381905 166.813454"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2230.061.2017171204314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2230.061.2017171204314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2230.061.2017171204314.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2230.061.2017272182825.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2235.061.2017171204350.hdf","time_start":"2000-02-27T22:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076572","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T22:40:00.000Z","id":"G1462762767-LAADS","original_format":"ECHO10","granule_size":"150.691787719727","browse_flag":true,"polygons":[["-41.400596 + 158.947126 -45.941897 -171.890998 -27.734607 -169.51279 -24.292984 166.839533 + -41.400596 158.947126"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2235.061.2017171204350.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2235.061.2017171204350.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2235.061.2017171204350.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2235.061.2017272182403.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2240.061.2017171204138.hdf","time_start":"2000-02-27T22:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076232","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T22:45:00.000Z","id":"G1462762730-LAADS","original_format":"ECHO10","granule_size":"165.351922988892","browse_flag":true,"polygons":[["-57.124447 + 144.701533 -63.831681 -172.277998 -45.59326 -171.296395 -41.339099 159.059983 + -57.124447 144.701533"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2240.061.2017171204138.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2240.061.2017171204138.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2240.061.2017171204138.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2240.061.2017272183524.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2245.061.2017171204331.hdf","time_start":"2000-02-27T22:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076573","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T22:50:00.000Z","id":"G1462762779-LAADS","original_format":"ECHO10","granule_size":"147.868308067322","browse_flag":true,"polygons":[["-68.774851 + 113.154181 -81.401503 -162.785416 -63.35132 -171.380865 -57.14875 145.033443 + -68.774851 113.154181"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2245.061.2017171204331.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2245.061.2017171204331.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2245.061.2017171204331.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2245.061.2017272182302.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2250.061.2017171204210.hdf","time_start":"2000-02-27T22:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076574","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T22:55:00.000Z","id":"G1462762780-LAADS","original_format":"ECHO10","granule_size":"105.298466682434","browse_flag":true,"polygons":[["-68.488061 + 61.71306 -79.951882 -18.397439 -80.793779 -161.501174 -69.03614 113.71286 + -68.488061 61.71306"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2250.061.2017171204210.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2250.061.2017171204210.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2250.061.2017171204210.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2250.061.2017272180737.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2340.061.2017171204241.hdf","time_start":"2000-02-27T23:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076575","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-27T23:45:00.000Z","id":"G1462762776-LAADS","original_format":"ECHO10","granule_size":"44.8665904998779","browse_flag":true,"polygons":[["78.097609 + 152.310267 67.774437 -135.918025 70.089834 -83.851218 82.710041 9.39767 78.097609 + 152.310267"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2340.061.2017171204241.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2340.061.2017171204241.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2340.061.2017171204241.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2340.061.2017272180706.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2345.061.2017171204309.hdf","time_start":"2000-02-27T23:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076907","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T23:50:00.000Z","id":"G1462762820-LAADS","original_format":"ECHO10","granule_size":"146.509350776672","browse_flag":true,"polygons":[["60.313035 + 156.681667 54.865164 -163.823812 68.142385 -136.305203 78.543208 150.085041 + 60.313035 156.681667"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2345.061.2017171204309.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2345.061.2017171204309.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2345.061.2017171204309.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2345.061.2017272182356.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2350.061.2017171204323.hdf","time_start":"2000-02-27T23:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077254","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-27T23:55:00.000Z","id":"G1462762827-LAADS","original_format":"ECHO10","granule_size":"161.786182403564","browse_flag":true,"polygons":[["42.512521 + 155.632065 38.736264 -176.491489 55.134277 -164.364236 60.802301 156.094495 + 42.512521 155.632065"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2350.061.2017171204323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2350.061.2017171204323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2350.061.2017171204323.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2350.061.2017272183632.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000058.2355.061.2017171204243.hdf","time_start":"2000-02-27T23:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076576","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T00:00:00.000Z","id":"G1462762778-LAADS","original_format":"ECHO10","granule_size":"158.410649299622","browse_flag":true,"polygons":[["24.693378 + 153.352259 21.562891 176.215447 38.932577 -176.931379 42.942357 155.370969 + 24.693378 153.352259"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2355.061.2017171204243.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000058.2355.061.2017171204243.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/058/MOD02QKM.A2000058.2355.061.2017171204243.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/058/MOBRGB.A2000058.2355.061.2017272182807.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0000.061.2017171204322.hdf","time_start":"2000-02-28T00:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076577","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T00:05:00.000Z","id":"G1462765354-LAADS","original_format":"ECHO10","granule_size":"138.143766403198","browse_flag":true,"polygons":[["6.914813 + 150.277776 3.938898 171.252587 21.700123 175.925324 25.021418 153.227202 6.914813 + 150.277776"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0000.061.2017171204322.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0000.061.2017171204322.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0000.061.2017171204322.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0000.061.2017272133701.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0005.061.2017171204237.hdf","time_start":"2000-02-28T00:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076578","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T00:10:00.000Z","id":"G1462765351-LAADS","original_format":"ECHO10","granule_size":"158.692998886108","browse_flag":true,"polygons":[["-10.770238 + 146.248636 -13.93482 167.554008 4.030679 171.147626 7.113924 150.220226 -10.770238 + 146.248636"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0005.061.2017171204237.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0005.061.2017171204237.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0005.061.2017171204237.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0005.061.2017272134726.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0010.061.2017171204320.hdf","time_start":"2000-02-28T00:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077255","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T00:15:00.000Z","id":"G1462765656-LAADS","original_format":"ECHO10","granule_size":"162.465058326721","browse_flag":true,"polygons":[["-28.251445 + 140.650626 -31.971798 164.86168 -13.837764 167.776592 -10.676261 146.255007 + -28.251445 140.650626"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0010.061.2017171204320.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0010.061.2017171204320.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0010.061.2017171204320.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0010.061.2017272134824.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0015.061.2017171204338.hdf","time_start":"2000-02-28T00:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076908","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T00:20:00.000Z","id":"G1462765512-LAADS","original_format":"ECHO10","granule_size":"159.092123031616","browse_flag":true,"polygons":[["-45.072584 + 131.815102 -49.953906 163.101499 -31.733591 165.280941 -28.163539 140.679315 + -45.072584 131.815102"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0015.061.2017171204338.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0015.061.2017171204338.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0015.061.2017171204338.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0015.061.2017272134449.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0020.061.2017171205323.hdf","time_start":"2000-02-28T00:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078513","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T00:25:00.000Z","id":"G1462765863-LAADS","original_format":"ECHO10","granule_size":"160.978058815002","browse_flag":true,"polygons":[["-60.270787 + 115.044145 -67.806834 163.453888 -49.574688 163.753672 -45.023856 131.964644 + -60.270787 115.044145"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0020.061.2017171205323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0020.061.2017171205323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0020.061.2017171205323.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0020.061.2017272135112.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0025.061.2017171205323.hdf","time_start":"2000-02-28T00:25:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078514","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T00:30:00.000Z","id":"G1462765869-LAADS","original_format":"ECHO10","granule_size":"135.504029273987","browse_flag":true,"polygons":[["-70.059358 + 77.49245 -85.039502 -173.856187 -67.299568 164.434068 -60.327902 115.440829 + -70.059358 77.49245"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0025.061.2017171205323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0025.061.2017171205323.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0025.061.2017171205323.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0025.061.2017272132950.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0030.061.2017171205305.hdf","time_start":"2000-02-28T00:30:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078515","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T00:35:00.000Z","id":"G1462765868-LAADS","original_format":"ECHO10","granule_size":"78.7185544967651","browse_flag":true,"polygons":[["-66.51386 + 28.003368 -76.161454 -39.585922 -84.390064 -173.352153 -70.375262 77.945987 + -66.51386 28.003368"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0030.061.2017171205305.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0030.061.2017171205305.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0030.061.2017171205305.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0030.061.2017272132922.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0120.061.2017171205317.hdf","time_start":"2000-02-28T01:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078516","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T01:25:00.000Z","id":"G1462765870-LAADS","original_format":"ECHO10","granule_size":"70.3790626525879","browse_flag":true,"polygons":[["74.172457 + 129.926851 65.462683 -169.088579 71.065827 -120.477545 86.078655 7.086172 + 74.172457 129.926851"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0120.061.2017171205317.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0120.061.2017171205317.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0120.061.2017171205317.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0120.061.2017272132810.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0125.061.2017171205338.hdf","time_start":"2000-02-28T01:25:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078517","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T01:30:00.000Z","id":"G1462765867-LAADS","original_format":"ECHO10","granule_size":"158.845067977905","browse_flag":true,"polygons":[["56.431077 + 131.943338 51.489138 167.922769 65.809055 -169.571669 74.6487 128.528941 56.431077 + 131.943338"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0125.061.2017171205338.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0125.061.2017171205338.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0125.061.2017171205338.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0125.061.2017272134005.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0130.061.2017171204219.hdf","time_start":"2000-02-28T01:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076579","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T01:35:00.000Z","id":"G1462765350-LAADS","original_format":"ECHO10","granule_size":"167.867401123047","browse_flag":true,"polygons":[["38.532247 + 130.476813 34.959257 156.851749 51.745557 167.382929 56.906551 131.411602 + 38.532247 130.476813"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0130.061.2017171204219.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0130.061.2017171204219.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0130.061.2017171204219.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0130.061.2017272135634.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0135.061.2017171204215.hdf","time_start":"2000-02-28T01:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076580","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T01:40:00.000Z","id":"G1462765352-LAADS","original_format":"ECHO10","granule_size":"160.535060882568","browse_flag":true,"polygons":[["20.715743 + 128.011343 17.653227 150.23749 35.140694 156.443464 38.941962 130.255093 20.715743 + 128.011343"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0135.061.2017171204215.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0135.061.2017171204215.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0135.061.2017171204215.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0135.061.2017272134829.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0140.061.2017171204234.hdf","time_start":"2000-02-28T01:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076909","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T01:45:00.000Z","id":"G1462765505-LAADS","original_format":"ECHO10","granule_size":"161.541301727295","browse_flag":true,"polygons":[["2.957531 + 124.752576 -0.032012 145.613016 17.780025 149.981368 21.016748 127.905406 + 2.957531 124.752576"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0140.061.2017171204234.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0140.061.2017171204234.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0140.061.2017171204234.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0140.061.2017272140107.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0145.061.2017171204204.hdf","time_start":"2000-02-28T01:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076581","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T01:50:00.000Z","id":"G1462765357-LAADS","original_format":"ECHO10","granule_size":"166.498748779297","browse_flag":true,"polygons":[["-14.709714 + 120.444161 -17.964292 142.157857 0.047737 145.582613 3.124669 124.706422 -14.709714 + 120.444161"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0145.061.2017171204204.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0145.061.2017171204204.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0145.061.2017171204204.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0145.061.2017272135654.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0150.061.2017171204220.hdf","time_start":"2000-02-28T01:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076910","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T01:55:00.000Z","id":"G1462765511-LAADS","original_format":"ECHO10","granule_size":"161.247611999512","browse_flag":true,"polygons":[["-32.087814 + 114.335325 -35.996237 139.653402 -17.836743 142.425682 -14.618818 120.46625 + -32.087814 114.335325"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0150.061.2017171204220.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0150.061.2017171204220.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0150.061.2017171204220.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0150.061.2017272133943.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0155.061.2017171205106.hdf","time_start":"2000-02-28T01:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077256","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T02:00:00.000Z","id":"G1462765667-LAADS","original_format":"ECHO10","granule_size":"157.622690200806","browse_flag":true,"polygons":[["-48.670406 + 104.321515 -53.956573 138.181926 -35.725998 140.119752 -32.001993 114.371506 + -48.670406 104.321515"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0155.061.2017171205106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0155.061.2017171205106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0155.061.2017171205106.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0155.061.2017272134950.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0200.061.2017171205523.hdf","time_start":"2000-02-28T02:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078518","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T02:05:00.000Z","id":"G1462765865-LAADS","original_format":"ECHO10","granule_size":"160.649112701416","browse_flag":true,"polygons":[["-63.182516 + 84.361981 -71.768226 139.487933 -53.548128 138.81324 -48.638848 104.518643 + -63.182516 84.361981"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0200.061.2017171205523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0200.061.2017171205523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0200.061.2017171205523.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0200.061.2017272134844.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0205.061.2017171205523.hdf","time_start":"2000-02-28T02:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078820","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T02:10:00.000Z","id":"G1462766006-LAADS","original_format":"ECHO10","granule_size":"133.754452705383","browse_flag":true,"polygons":[["-70.592616 + 40.837915 -87.393817 -146.348943 -71.236217 140.60528 -63.276313 84.831394 + -70.592616 40.837915"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0205.061.2017171205523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0205.061.2017171205523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0205.061.2017171205523.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0205.061.2017272132916.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0210.061.2017171210709.hdf","time_start":"2000-02-28T02:10:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079472","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T02:15:00.000Z","id":"G1462766083-LAADS","original_format":"ECHO10","granule_size":"54.0882806777954","browse_flag":true,"polygons":[["-64.043324 + -4.403826 -72.256915 -62.353264 -86.927681 -155.458976 -70.96082 41.098095 + -64.043324 -4.403826"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0210.061.2017171210709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0210.061.2017171210709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0210.061.2017171210709.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0210.061.2017272132639.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0300.061.2017171210503.hdf","time_start":"2000-02-28T03:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078821","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T03:05:00.000Z","id":"G1462766010-LAADS","original_format":"ECHO10","granule_size":"102.556674957275","browse_flag":true,"polygons":[["70.228131 + 106.395193 62.754738 159.24023 71.214194 -157.791024 86.944928 50.111102 70.228131 + 106.395193"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0300.061.2017171210503.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0300.061.2017171210503.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0300.061.2017171210503.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0300.061.2017272133019.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0305.061.2017171210000.hdf","time_start":"2000-02-28T03:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078822","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T03:10:00.000Z","id":"G1462766013-LAADS","original_format":"ECHO10","granule_size":"163.301029205322","browse_flag":true,"polygons":[["52.457551 + 107.010665 47.947023 140.09379 63.091821 158.674266 70.714006 105.312461 52.457551 + 107.010665"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0305.061.2017171210000.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0305.061.2017171210000.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0305.061.2017171210000.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0305.061.2017272133710.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0310.061.2017171204252.hdf","time_start":"2000-02-28T03:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076911","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T03:15:00.000Z","id":"G1462765513-LAADS","original_format":"ECHO10","granule_size":"158.076276779175","browse_flag":true,"polygons":[["34.642129 + 105.321845 31.232685 130.434197 48.179365 139.595828 52.926889 106.651525 + 34.642129 105.321845"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0310.061.2017171204252.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0310.061.2017171204252.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0310.061.2017171204252.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0310.061.2017272133905.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0315.061.2017171205114.hdf","time_start":"2000-02-28T03:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077257","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T03:20:00.000Z","id":"G1462765658-LAADS","original_format":"ECHO10","granule_size":"165.129047393799","browse_flag":true,"polygons":[["16.748372 + 102.639772 13.730935 124.358871 31.399632 130.063147 35.028162 105.097723 + 16.748372 102.639772"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0315.061.2017171205114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0315.061.2017171205114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0315.061.2017171205114.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0315.061.2017272135332.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0320.061.2017171204228.hdf","time_start":"2000-02-28T03:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076582","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T03:25:00.000Z","id":"G1462765356-LAADS","original_format":"ECHO10","granule_size":"164.1331615448","browse_flag":true,"polygons":[["-0.98506 + 99.177259 -4.004303 120.028208 13.848641 124.133529 17.018598 102.541735 -0.98506 + 99.177259"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0320.061.2017171204228.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0320.061.2017171204228.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0320.061.2017171204228.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0320.061.2017272135331.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0325.061.2017171204916.hdf","time_start":"2000-02-28T03:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076912","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T03:30:00.000Z","id":"G1462765516-LAADS","original_format":"ECHO10","granule_size":"159.367245674133","browse_flag":true,"polygons":[["-18.625544 + 94.556262 -21.987313 116.799976 -3.934485 120.069468 -0.851018 99.143514 -18.625544 + 94.556262"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0325.061.2017171204916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0325.061.2017171204916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0325.061.2017171204916.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0325.061.2017272134817.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0330.061.2017171204307.hdf","time_start":"2000-02-28T03:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076583","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T03:35:00.000Z","id":"G1462765360-LAADS","original_format":"ECHO10","granule_size":"159.514706611633","browse_flag":true,"polygons":[["-35.877198 + 87.829343 -40.010305 114.496573 -21.829568 117.119513 -18.53484 94.580706 + -35.877198 87.829343"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0330.061.2017171204307.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0330.061.2017171204307.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0330.061.2017171204307.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0330.061.2017272135013.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0335.061.2017171204400.hdf","time_start":"2000-02-28T03:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076913","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T03:40:00.000Z","id":"G1462765514-LAADS","original_format":"ECHO10","granule_size":"167.41455078125","browse_flag":true,"polygons":[["-52.171608 + 76.386307 -57.945776 113.377191 -39.708597 115.009251 -35.800257 87.895415 + -52.171608 76.386307"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0335.061.2017171204400.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0335.061.2017171204400.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0335.061.2017171204400.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0335.061.2017272135420.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0340.061.2017171205338.hdf","time_start":"2000-02-28T03:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078519","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T03:45:00.000Z","id":"G1462765873-LAADS","original_format":"ECHO10","granule_size":"154.227486610413","browse_flag":true,"polygons":[["-65.772982 + 52.422366 -75.699585 116.403492 -57.509278 114.041468 -52.160514 76.635617 + -65.772982 52.422366"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0340.061.2017171205338.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0340.061.2017171205338.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0340.061.2017171205338.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0340.061.2017272134802.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0345.061.2017171205338.hdf","time_start":"2000-02-28T03:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078520","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T03:50:00.000Z","id":"G1462765864-LAADS","original_format":"ECHO10","granule_size":"133.119194030762","browse_flag":true,"polygons":[["-70.31181 + 4.051012 -85.446805 -111.410313 -75.137405 117.736455 -65.912969 52.94587 + -70.31181 4.051012"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0345.061.2017171205338.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0345.061.2017171205338.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0345.061.2017171205338.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0345.061.2017272132631.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0350.061.2017171205304.hdf","time_start":"2000-02-28T03:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078521","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T03:55:00.000Z","id":"G1462765881-LAADS","original_format":"ECHO10","granule_size":"29.4848976135254","browse_flag":true,"polygons":[["-61.204254 + -35.394892 -68.328427 -86.18168 -85.615567 -119.480331 -70.679122 4.080996 + -61.204254 -35.394892"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0350.061.2017171205304.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0350.061.2017171205304.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0350.061.2017171205304.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0350.061.2017272132541.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0440.061.2017171210619.hdf","time_start":"2000-02-28T04:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078823","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T04:45:00.000Z","id":"G1462766009-LAADS","original_format":"ECHO10","granule_size":"134.009846687317","browse_flag":true,"polygons":[["66.268131 + 82.226535 59.753133 128.807314 70.518674 165.24353 84.074086 62.68594 66.268131 + 82.226535"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0440.061.2017171210619.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0440.061.2017171210619.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0440.061.2017171210619.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0440.061.2017272133401.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0445.061.2017171204245.hdf","time_start":"2000-02-28T04:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076914","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T04:50:00.000Z","id":"G1462765528-LAADS","original_format":"ECHO10","granule_size":"162.427255630493","browse_flag":true,"polygons":[["48.482042 + 82.022532 44.310604 112.722917 60.062064 128.236216 66.759218 81.433507 48.482042 + 82.022532"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0445.061.2017171204245.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0445.061.2017171204245.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0445.061.2017171204245.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0445.061.2017272133956.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0450.061.2017171204303.hdf","time_start":"2000-02-28T04:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076915","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T04:55:00.000Z","id":"G1462765520-LAADS","original_format":"ECHO10","granule_size":"162.819802284241","browse_flag":true,"polygons":[["30.661235 + 80.138595 27.392529 104.128899 44.535783 112.217716 48.937361 81.797038 30.661235 + 80.138595"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0450.061.2017171204303.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0450.061.2017171204303.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0450.061.2017171204303.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0450.061.2017272134152.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0455.061.2017171204314.hdf","time_start":"2000-02-28T04:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077258","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T05:00:00.000Z","id":"G1462765674-LAADS","original_format":"ECHO10","granule_size":"145.962109565735","browse_flag":true,"polygons":[["12.869343 + 77.24724 9.88547 98.546637 27.550948 103.769499 31.024242 79.896872 12.869343 + 77.24724"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0455.061.2017171204314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0455.061.2017171204314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0455.061.2017171204314.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0455.061.2017272133403.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0500.061.2017171204245.hdf","time_start":"2000-02-28T05:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076916","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T05:05:00.000Z","id":"G1462765515-LAADS","original_format":"ECHO10","granule_size":"152.988686561584","browse_flag":true,"polygons":[["-4.919169 + 73.546915 -7.985244 94.497833 9.987284 98.397549 13.109342 77.148638 -4.919169 + 73.546915"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0500.061.2017171204245.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0500.061.2017171204245.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0500.061.2017171204245.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0500.061.2017272134458.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0505.061.2017171204454.hdf","time_start":"2000-02-28T05:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076917","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T05:10:00.000Z","id":"G1462765518-LAADS","original_format":"ECHO10","granule_size":"158.613141059875","browse_flag":true,"polygons":[["-22.521827 + 68.569696 -26.012941 91.504215 -7.925494 94.625958 -4.819286 73.525283 -22.521827 + 68.569696"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0505.061.2017171204454.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0505.061.2017171204454.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0505.061.2017171204454.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0505.061.2017272134946.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0510.061.2017171204447.hdf","time_start":"2000-02-28T05:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076584","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T05:15:00.000Z","id":"G1462765359-LAADS","original_format":"ECHO10","granule_size":"159.823857307434","browse_flag":true,"polygons":[["-39.622516 + 61.10884 -44.021288 89.396683 -25.82229 91.856621 -22.433112 68.596575 -39.622516 + 61.10884"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0510.061.2017171204447.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0510.061.2017171204447.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0510.061.2017171204447.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0510.061.2017272135031.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0515.061.2017171204457.hdf","time_start":"2000-02-28T05:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076918","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T05:20:00.000Z","id":"G1462765531-LAADS","original_format":"ECHO10","granule_size":"159.879113197327","browse_flag":true,"polygons":[["-55.552664 + 47.878174 -61.925402 88.736713 -43.687023 89.960682 -39.554996 61.205184 -55.552664 + 47.878174"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0515.061.2017171204457.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0515.061.2017171204457.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0515.061.2017171204457.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0515.061.2017272135227.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0520.061.2017171205329.hdf","time_start":"2000-02-28T05:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078522","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T05:25:00.000Z","id":"G1462765871-LAADS","original_format":"ECHO10","granule_size":"156.98065662384","browse_flag":true,"polygons":[["-67.931365 + 18.999937 -79.58645 95.016891 -61.462423 89.43944 -55.565774 48.184415 -67.931365 + 18.999937"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0520.061.2017171205329.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0520.061.2017171205329.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0520.061.2017171205329.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0520.061.2017272134146.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0525.061.2017171205328.hdf","time_start":"2000-02-28T05:25:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078523","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T05:30:00.000Z","id":"G1462765883-LAADS","original_format":"ECHO10","granule_size":"117.056772232056","browse_flag":true,"polygons":[["-69.249096 + -31.954086 -81.862854 -120.755139 -78.982209 96.718188 -68.125349 19.546146 + -69.249096 -31.954086"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0525.061.2017171205328.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0525.061.2017171205328.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0525.061.2017171205328.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0525.061.2017272132553.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0615.061.2017171205501.hdf","time_start":"2000-02-28T06:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078524","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T06:20:00.000Z","id":"G1462765877-LAADS","original_format":"ECHO10","granule_size":"36.4483814239502","browse_flag":true,"polygons":[["79.959812 + 51.463024 68.695799 129.824941 69.354763 -177.529668 80.917079 -93.80617 79.959812 + 51.463024"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0615.061.2017171205501.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0615.061.2017171205501.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0615.061.2017171205501.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0615.061.2017272132616.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0620.061.2017171205522.hdf","time_start":"2000-02-28T06:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078824","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T06:25:00.000Z","id":"G1462766014-LAADS","original_format":"ECHO10","granule_size":"146.393811225891","browse_flag":true,"polygons":[["62.304152 + 57.75299 56.546647 99.343729 69.076616 129.50173 80.383791 48.6942 62.304152 + 57.75299"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0620.061.2017171205522.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0620.061.2017171205522.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0620.061.2017171205522.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0620.061.2017272133554.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0625.061.2017171204353.hdf","time_start":"2000-02-28T06:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076585","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T06:30:00.000Z","id":"G1462765358-LAADS","original_format":"ECHO10","granule_size":"160.581406593323","browse_flag":true,"polygons":[["44.508367 + 56.936638 40.615142 85.678567 56.825259 98.799695 62.794709 57.094617 44.508367 + 56.936638"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0625.061.2017171204353.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0625.061.2017171204353.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0625.061.2017171204353.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0625.061.2017272133949.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0630.061.2017171204349.hdf","time_start":"2000-02-28T06:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076586","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T06:35:00.000Z","id":"G1462765363-LAADS","original_format":"ECHO10","granule_size":"164.298503875732","browse_flag":true,"polygons":[["26.689202 + 54.760353 23.520525 77.987688 40.821972 85.211093 44.949031 56.655124 26.689202 + 54.760353"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0630.061.2017171204349.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0630.061.2017171204349.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0630.061.2017171204349.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0630.061.2017272133746.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0635.061.2017171204345.hdf","time_start":"2000-02-28T06:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076919","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T06:40:00.000Z","id":"G1462765517-LAADS","original_format":"ECHO10","granule_size":"120.699118614197","browse_flag":true,"polygons":[["8.905936 + 51.771278 5.931165 72.848491 23.661435 77.690587 27.032596 54.61821 8.905936 + 51.771278"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0635.061.2017171204345.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0635.061.2017171204345.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0635.061.2017171204345.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0635.061.2017272132949.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0640.061.2017171204344.hdf","time_start":"2000-02-28T06:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076587","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T06:45:00.000Z","id":"G1462765355-LAADS","original_format":"ECHO10","granule_size":"150.693525314331","browse_flag":true,"polygons":[["-8.783381 + 47.872118 -11.910022 69.033188 6.028257 72.716653 9.120676 51.707248 -8.783381 + 47.872118"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0640.061.2017171204344.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0640.061.2017171204344.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0640.061.2017171204344.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0640.061.2017272134359.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0645.061.2017171204354.hdf","time_start":"2000-02-28T06:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076920","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T06:50:00.000Z","id":"G1462765522-LAADS","original_format":"ECHO10","granule_size":"158.146737098694","browse_flag":true,"polygons":[["-26.393048 + 42.469435 -30.034363 66.234089 -11.827421 69.233506 -8.687083 47.866187 -26.393048 + 42.469435"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0645.061.2017171204354.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0645.061.2017171204354.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0645.061.2017171204354.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0645.061.2017272134557.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0650.061.2017171210730.hdf","time_start":"2000-02-28T06:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079146","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T06:55:00.000Z","id":"G1462766057-LAADS","original_format":"ECHO10","granule_size":"150.380875587463","browse_flag":true,"polygons":[["-43.313212 + 34.126477 -48.024373 64.355375 -29.811049 66.631162 -26.305242 42.499071 -43.313212 + 34.126477"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0650.061.2017171210730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0650.061.2017171210730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0650.061.2017171210730.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0650.061.2017272134630.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0655.061.2017171205545.hdf","time_start":"2000-02-28T06:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078825","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T07:00:00.000Z","id":"G1462766011-LAADS","original_format":"ECHO10","granule_size":"158.163835525513","browse_flag":true,"polygons":[["-58.780423 + 18.647798 -65.894206 64.31616 -47.659151 64.973 -43.257963 34.259059 -58.780423 + 18.647798"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0655.061.2017171205545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0655.061.2017171205545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0655.061.2017171205545.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0655.061.2017272135006.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0700.061.2017171205538.hdf","time_start":"2000-02-28T07:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078525","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T07:05:00.000Z","id":"G1462765885-LAADS","original_format":"ECHO10","granule_size":"150.27765750885","browse_flag":true,"polygons":[["-69.531164 + -15.96146 -83.361744 78.232193 -65.405563 65.088249 -58.823559 19.018032 -69.531164 + -15.96146"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0700.061.2017171205538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0700.061.2017171205538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0700.061.2017171205538.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0700.061.2017272133709.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0705.061.2017171205521.hdf","time_start":"2000-02-28T07:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078826","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T07:10:00.000Z","id":"G1462766019-LAADS","original_format":"ECHO10","granule_size":"92.0109453201294","browse_flag":true,"polygons":[["-67.520096 + -66.597756 -78.045961 -139.886957 -82.714273 79.8926 -69.783865 -15.459812 + -67.520096 -66.597756"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0705.061.2017171205521.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0705.061.2017171205521.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0705.061.2017171205521.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0705.061.2017272132426.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0755.061.2017171205512.hdf","time_start":"2000-02-28T07:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078526","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T08:00:00.000Z","id":"G1462765875-LAADS","original_format":"ECHO10","granule_size":"63.1802768707275","browse_flag":true,"polygons":[["76.060558 + 30.110992 66.6289 95.88733 70.694024 146.493775 84.56357 -106.041701 76.060558 + 30.110992"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0755.061.2017171205512.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0755.061.2017171205512.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0755.061.2017171205512.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0755.061.2017272132709.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0800.061.2017171205540.hdf","time_start":"2000-02-28T08:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078827","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T08:05:00.000Z","id":"G1462766020-LAADS","original_format":"ECHO10","granule_size":"153.26646232605","browse_flag":true,"polygons":[["58.337538 + 33.056848 53.163922 70.694414 66.99116 95.432867 76.524153 28.339859 58.337538 + 33.056848"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0800.061.2017171205540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0800.061.2017171205540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0800.061.2017171205540.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0800.061.2017272133728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0805.061.2017171205538.hdf","time_start":"2000-02-28T08:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078828","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T08:10:00.000Z","id":"G1462766016-LAADS","original_format":"ECHO10","granule_size":"161.479674339294","browse_flag":true,"polygons":[["40.533253 + 31.818828 36.864386 58.912807 53.424634 70.159414 58.822156 32.536318 40.533253 + 31.818828"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0805.061.2017171205538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0805.061.2017171205538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0805.061.2017171205538.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0805.061.2017272133822.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0810.061.2017171204612.hdf","time_start":"2000-02-28T08:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076921","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T08:15:00.000Z","id":"G1462765519-LAADS","original_format":"ECHO10","granule_size":"161.049265861511","browse_flag":true,"polygons":[["22.716577 + 29.439529 19.628567 51.947293 37.060546 58.458889 40.954153 31.57075 22.716577 + 29.439529"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0810.061.2017171204612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0810.061.2017171204612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0810.061.2017171204612.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0810.061.2017272133258.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0815.061.2017171204400.hdf","time_start":"2000-02-28T08:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076588","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T08:20:00.000Z","id":"G1462765362-LAADS","original_format":"ECHO10","granule_size":"157.301082611084","browse_flag":true,"polygons":[["4.949626 + 26.283661 1.969313 47.187081 19.754834 51.702314 23.031569 29.332895 4.949626 + 26.283661"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0815.061.2017171204400.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0815.061.2017171204400.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0815.061.2017171204400.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0815.061.2017272132758.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0820.061.2017171204546.hdf","time_start":"2000-02-28T08:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076922","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T08:25:00.000Z","id":"G1462765521-LAADS","original_format":"ECHO10","granule_size":"162.640560150146","browse_flag":true,"polygons":[["-12.728044 + 22.13028 -15.933718 43.61731 2.054201 47.124315 5.130056 26.241054 -12.728044 + 22.13028"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0820.061.2017171204546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0820.061.2017171204546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0820.061.2017171204546.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0820.061.2017272133203.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0825.061.2017171204433.hdf","time_start":"2000-02-28T08:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076923","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T08:30:00.000Z","id":"G1462765538-LAADS","original_format":"ECHO10","granule_size":"168.83459854126","browse_flag":true,"polygons":[["-30.155365 + 16.271491 -33.968137 41.014875 -15.820238 43.858465 -12.634568 22.125396 -30.155365 + 16.271491"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0825.061.2017171204433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0825.061.2017171204433.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0825.061.2017171204433.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0825.061.2017272134210.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0830.061.2017171204411.hdf","time_start":"2000-02-28T08:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076924","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T08:35:00.000Z","id":"G1462765524-LAADS","original_format":"ECHO10","granule_size":"159.980969429016","browse_flag":true,"polygons":[["-46.942514 + 6.821672 -52.026342 39.386343 -33.711814 41.462156 -30.067832 16.302389 -46.942514 + 6.821672"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0830.061.2017171204411.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0830.061.2017171204411.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0830.061.2017171204411.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0830.061.2017272134332.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0835.061.2017171205606.hdf","time_start":"2000-02-28T08:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078527","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T08:40:00.000Z","id":"G1462765879-LAADS","original_format":"ECHO10","granule_size":"160.464274406433","browse_flag":true,"polygons":[["-61.808247 + -11.50445 -69.855614 40.199854 -51.629529 40.038123 -46.901696 6.995026 -61.808247 + -11.50445"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0835.061.2017171205606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0835.061.2017171205606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0835.061.2017171205606.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0835.061.2017272134604.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0840.061.2017171205540.hdf","time_start":"2000-02-28T08:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078829","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T08:45:00.000Z","id":"G1462766018-LAADS","original_format":"ECHO10","granule_size":"144.908432006836","browse_flag":true,"polygons":[["-70.436112 + -52.209136 -86.641852 80.383001 -69.340214 41.124152 -61.886862 -11.065631 + -70.436112 -52.209136"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0840.061.2017171205540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0840.061.2017171205540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0840.061.2017171205540.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0840.061.2017272132950.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0845.061.2017171205539.hdf","time_start":"2000-02-28T08:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078528","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T08:50:00.000Z","id":"G1462765878-LAADS","original_format":"ECHO10","granule_size":"67.2724256515503","browse_flag":true,"polygons":[["-65.259936 + -99.706118 -74.150608 -162.075689 -85.975576 78.602474 -70.745136 -51.843697 + -65.259936 -99.706118"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0845.061.2017171205539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0845.061.2017171205539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0845.061.2017171205539.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0845.061.2017272132540.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0935.061.2017171205535.hdf","time_start":"2000-02-28T09:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078529","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T09:40:00.000Z","id":"G1462765880-LAADS","original_format":"ECHO10","granule_size":"97.871789932251","browse_flag":true,"polygons":[["72.122837 + 7.021687 64.100909 63.515099 71.254523 109.394918 87.117715 -85.938245 72.122837 + 7.021687"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0935.061.2017171205535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0935.061.2017171205535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0935.061.2017171205535.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0935.061.2017272133048.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0940.061.2017171205620.hdf","time_start":"2000-02-28T09:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079147","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T09:45:00.000Z","id":"G1462766062-LAADS","original_format":"ECHO10","granule_size":"152.340637207031","browse_flag":true,"polygons":[["54.366623 + 8.207354 49.656756 42.655729 64.433865 63.005924 72.603795 5.758957 54.366623 + 8.207354"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0940.061.2017171205620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0940.061.2017171205620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0940.061.2017171205620.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0940.061.2017272134848.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0945.061.2017171204426.hdf","time_start":"2000-02-28T09:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077259","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T09:50:00.000Z","id":"G1462765666-LAADS","original_format":"ECHO10","granule_size":"160.003108024597","browse_flag":true,"polygons":[["36.554492 + 6.630814 33.068014 32.365671 49.902795 42.129948 54.84107 7.771266 36.554492 + 6.630814"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0945.061.2017171204426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0945.061.2017171204426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0945.061.2017171204426.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0945.061.2017272133931.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0950.061.2017171205527.hdf","time_start":"2000-02-28T09:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078830","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T09:55:00.000Z","id":"G1462766024-LAADS","original_format":"ECHO10","granule_size":"158.323003768921","browse_flag":true,"polygons":[["18.74445 + 4.086037 15.706297 26.049996 33.241926 31.977307 36.954303 6.435519 18.74445 + 4.086037"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0950.061.2017171205527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0950.061.2017171205527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0950.061.2017171205527.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0950.061.2017272133143.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.0955.061.2017171210620.hdf","time_start":"2000-02-28T09:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079148","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T10:00:00.000Z","id":"G1462766061-LAADS","original_format":"ECHO10","granule_size":"155.940885543823","browse_flag":true,"polygons":[["0.999606 + 0.723037 -2.000462 21.557677 15.831926 25.790359 19.032611 3.979559 0.999606 + 0.723037"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0955.061.2017171210620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.0955.061.2017171210620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.0955.061.2017171210620.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.0955.061.2017272134035.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1000.061.2017171205601.hdf","time_start":"2000-02-28T10:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078831","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T10:05:00.000Z","id":"G1462766023-LAADS","original_format":"ECHO10","granule_size":"161.606553077698","browse_flag":true,"polygons":[["-16.652622 + -3.734344 -19.957529 18.2152 -1.926156 21.56282 1.152318 0.684917 -16.652622 + -3.734344"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1000.061.2017171205601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1000.061.2017171205601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1000.061.2017171205601.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1000.061.2017272134457.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1005.061.2017171205602.hdf","time_start":"2000-02-28T10:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078530","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T10:10:00.000Z","id":"G1462765892-LAADS","original_format":"ECHO10","granule_size":"149.260595321655","browse_flag":true,"polygons":[["-33.969063 + -10.137272 -37.984582 15.828142 -19.817502 18.526904 -16.559845 -3.710545 + -33.969063 -10.137272"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1005.061.2017171205602.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1005.061.2017171205602.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1005.061.2017171205602.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1005.061.2017272134153.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1010.061.2017171205554.hdf","time_start":"2000-02-28T10:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078832","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T10:15:00.000Z","id":"G1462766021-LAADS","original_format":"ECHO10","granule_size":"170.635268211365","browse_flag":true,"polygons":[["-50.41548 + -20.819757 -55.933791 14.517709 -37.700419 16.314023 -33.887765 -10.085228 + -50.41548 -20.819757"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1010.061.2017171205554.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1010.061.2017171205554.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1010.061.2017171205554.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1010.061.2017272135533.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1015.061.2017171205550.hdf","time_start":"2000-02-28T10:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078833","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T10:20:00.000Z","id":"G1462766025-LAADS","original_format":"ECHO10","granule_size":"164.343391418457","browse_flag":true,"polygons":[["-64.566165 + -42.810121 -73.808634 16.563781 -55.511365 15.161084 -50.39406 -20.596218 + -64.566165 -42.810121"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1015.061.2017171205550.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1015.061.2017171205550.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1015.061.2017171205550.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1015.061.2017272135330.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1020.061.2017171205552.hdf","time_start":"2000-02-28T10:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078834","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T10:25:00.000Z","id":"G1462766022-LAADS","original_format":"ECHO10","granule_size":"143.377370834351","browse_flag":true,"polygons":[["-70.547979 + -89.05595 -86.836996 130.002548 -73.260755 17.769545 -64.684489 -42.305632 + -70.547979 -89.05595"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1020.061.2017171205552.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1020.061.2017171205552.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1020.061.2017171205552.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1020.061.2017272133315.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1025.061.2017171205533.hdf","time_start":"2000-02-28T10:25:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078531","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T10:30:00.000Z","id":"G1462765876-LAADS","original_format":"ECHO10","granule_size":"42.5168676376343","browse_flag":true,"polygons":[["-62.597059 + -131.377356 -70.227354 174.548732 -86.739472 118.299183 -70.899847 -88.903895 + -62.597059 -131.377356"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1025.061.2017171205533.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1025.061.2017171205533.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1025.061.2017171205533.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1025.061.2017272132531.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1115.061.2017171205603.hdf","time_start":"2000-02-28T11:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078835","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T11:20:00.000Z","id":"G1462766027-LAADS","original_format":"ECHO10","granule_size":"128.249431610107","browse_flag":true,"polygons":[["68.169364 + -16.875001 61.222593 32.529495 70.951565 72.128114 85.665174 -47.924491 68.169364 + -16.875001"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1115.061.2017171205603.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1115.061.2017171205603.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1115.061.2017171205603.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1115.061.2017272133625.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1120.061.2017171204425.hdf","time_start":"2000-02-28T11:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076925","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T11:25:00.000Z","id":"G1462765526-LAADS","original_format":"ECHO10","granule_size":"161.395498275757","browse_flag":true,"polygons":[["50.391993 + -16.743963 46.060665 15.077798 61.539704 31.972263 68.658026 -17.822073 50.391993 + -16.743963"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1120.061.2017171204425.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1120.061.2017171204425.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1120.061.2017171204425.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1120.061.2017272135018.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1125.061.2017171204455.hdf","time_start":"2000-02-28T11:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077260","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T11:30:00.000Z","id":"G1462765659-LAADS","original_format":"ECHO10","granule_size":"158.982666969299","browse_flag":true,"polygons":[["32.573587 + -18.591439 29.237826 5.994457 46.290221 14.572211 50.856308 -17.106441 32.573587 + -18.591439"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1125.061.2017171204455.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1125.061.2017171204455.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1125.061.2017171204455.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1125.061.2017272134334.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1130.061.2017171204331.hdf","time_start":"2000-02-28T11:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077261","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T11:35:00.000Z","id":"G1462765660-LAADS","original_format":"ECHO10","granule_size":"156.836269378662","browse_flag":true,"polygons":[["14.772389 + -21.319234 11.773512 0.202481 29.398803 5.637039 32.954425 -18.765411 14.772389 + -21.319234"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1130.061.2017171204331.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1130.061.2017171204331.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1130.061.2017171204331.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1130.061.2017272133607.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1135.061.2017171204331.hdf","time_start":"2000-02-28T11:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076926","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T11:40:00.000Z","id":"G1462765525-LAADS","original_format":"ECHO10","granule_size":"151.876860618591","browse_flag":true,"polygons":[["-2.943858 + -24.876504 -5.983831 -3.98828 11.885787 -0.000106 15.031748 -21.400612 -2.943858 + -24.876504"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1135.061.2017171204331.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1135.061.2017171204331.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1135.061.2017171204331.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1135.061.2017272134113.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1140.061.2017171205806.hdf","time_start":"2000-02-28T11:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077571","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T11:45:00.000Z","id":"G1462765708-LAADS","original_format":"ECHO10","granule_size":"144.326286315918","browse_flag":true,"polygons":[["-20.564681 + -29.668711 -23.990009 -7.094203 -5.919858 -3.898642 -2.825057 -24.90346 -20.564681 + -29.668711"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1140.061.2017171205806.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1140.061.2017171205806.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1140.061.2017171205806.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1140.061.2017272133425.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1145.061.2017171204704.hdf","time_start":"2000-02-28T11:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077572","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T11:50:00.000Z","id":"G1462765707-LAADS","original_format":"ECHO10","granule_size":"157.395039558411","browse_flag":true,"polygons":[["-37.743945 + -36.745227 -42.005461 -9.310647 -23.815063 -6.765159 -20.475203 -29.643277 + -37.743945 -36.745227"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1145.061.2017171204704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1145.061.2017171204704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1145.061.2017171204704.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1145.061.2017272134909.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1150.061.2017171205625.hdf","time_start":"2000-02-28T11:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078532","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T11:55:00.000Z","id":"G1462765890-LAADS","original_format":"ECHO10","granule_size":"164.058628082275","browse_flag":true,"polygons":[["-53.867503 + -49.028294 -59.925795 -10.22273 -41.687192 -8.773866 -37.671348 -36.664357 + -53.867503 -49.028294"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1150.061.2017171205625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1150.061.2017171205625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1150.061.2017171205625.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1150.061.2017272135830.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1155.061.2017171205615.hdf","time_start":"2000-02-28T11:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079149","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T12:00:00.000Z","id":"G1462766075-LAADS","original_format":"ECHO10","granule_size":"160.415008544922","browse_flag":true,"polygons":[["-66.905995 + -75.32129 -77.637202 -5.772646 -59.475101 -9.49578 -53.868497 -48.749464 -66.905995 + -75.32129"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1155.061.2017171205615.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1155.061.2017171205615.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1155.061.2017171205615.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1155.061.2017272140203.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1200.061.2017171205612.hdf","time_start":"2000-02-28T12:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078836","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T12:05:00.000Z","id":"G1462766035-LAADS","original_format":"ECHO10","granule_size":"138.116698265076","browse_flag":true,"polygons":[["-69.849885 + -125.563373 -83.64862 135.4688 -77.063038 -4.444694 -67.074477 -74.783537 + -69.849885 -125.563373"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1200.061.2017171205612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1200.061.2017171205612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1200.061.2017171205612.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1200.061.2017272132959.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1205.061.2017171205548.hdf","time_start":"2000-02-28T12:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078837","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T12:10:00.000Z","id":"G1462766026-LAADS","original_format":"ECHO10","granule_size":"18.4324731826782","browse_flag":true,"polygons":[["-59.635197 + -161.834315 -66.286224 150.530265 -83.953484 130.140432 -70.227485 -125.655661 + -59.635197 -161.834315"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1205.061.2017171205548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1205.061.2017171205548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1205.061.2017171205548.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1205.061.2017272132618.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1250.061.2017171204310.hdf","time_start":"2000-02-28T12:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076589","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T12:55:00.000Z","id":"G1462765361-LAADS","original_format":"ECHO10","granule_size":"29.0296926498413","browse_flag":true,"polygons":[["81.798523 + -50.297591 69.47574 35.928904 68.42915 88.621788 79.003511 164.377951 81.798523 + -50.297591"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1250.061.2017171204310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1250.061.2017171204310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1250.061.2017171204310.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1250.061.2017272132652.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1255.061.2017171204352.hdf","time_start":"2000-02-28T12:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077262","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T13:00:00.000Z","id":"G1462765661-LAADS","original_format":"ECHO10","granule_size":"148.65395450592","browse_flag":true,"polygons":[["64.207188 + -41.155757 58.097789 2.639006 69.841275 35.71737 82.19541 -53.800249 64.207188 + -41.155757"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1255.061.2017171204352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1255.061.2017171204352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1255.061.2017171204352.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1255.061.2017272134522.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1300.061.2017171204451.hdf","time_start":"2000-02-28T13:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077573","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T13:05:00.000Z","id":"G1462765720-LAADS","original_format":"ECHO10","granule_size":"160.711309432983","browse_flag":true,"polygons":[["46.415235 + -41.777165 42.389031 -12.12371 58.39358 2.073429 64.692035 -41.949364 46.415235 + -41.777165"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1300.061.2017171204451.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1300.061.2017171204451.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1300.061.2017171204451.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1300.061.2017272140338.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1305.061.2017171204542.hdf","time_start":"2000-02-28T13:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076927","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T13:10:00.000Z","id":"G1462765529-LAADS","original_format":"ECHO10","granule_size":"160.939049720764","browse_flag":true,"polygons":[["28.594596 + -43.853654 25.372473 -20.213247 42.600098 -12.592361 46.859551 -42.081222 + 28.594596 -43.853654"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1305.061.2017171204542.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1305.061.2017171204542.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1305.061.2017171204542.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1305.061.2017272140529.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1310.061.2017171204524.hdf","time_start":"2000-02-28T13:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076928","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T13:15:00.000Z","id":"G1462765527-LAADS","original_format":"ECHO10","granule_size":"158.907516479492","browse_flag":true,"polygons":[["10.802392 + -46.755786 7.822096 -25.55828 25.521584 -20.538791 28.948372 -44.002324 10.802392 + -46.755786"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1310.061.2017171204524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1310.061.2017171204524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1310.061.2017171204524.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1310.061.2017272135929.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1315.061.2017171204359.hdf","time_start":"2000-02-28T13:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076929","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T13:20:00.000Z","id":"G1462765533-LAADS","original_format":"ECHO10","granule_size":"164.446273803711","browse_flag":true,"polygons":[["-6.894341 + -50.530154 -9.987034 -29.501629 7.926066 -25.726062 11.030049 -46.816321 -6.894341 + -50.530154"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1315.061.2017171204359.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1315.061.2017171204359.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1315.061.2017171204359.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1315.061.2017272135626.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1320.061.2017171204347.hdf","time_start":"2000-02-28T13:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076930","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T13:25:00.000Z","id":"G1462765537-LAADS","original_format":"ECHO10","granule_size":"162.679768562317","browse_flag":true,"polygons":[["-24.459841 + -55.703512 -28.021909 -32.389009 -9.916889 -29.336921 -6.796973 -50.544554 + -24.459841 -55.703512"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1320.061.2017171204347.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1320.061.2017171204347.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1320.061.2017171204347.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1320.061.2017272134529.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1325.061.2017171204350.hdf","time_start":"2000-02-28T13:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076931","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T13:30:00.000Z","id":"G1462765532-LAADS","original_format":"ECHO10","granule_size":"157.166038513184","browse_flag":true,"polygons":[["-41.476403 + -63.584572 -46.023099 -34.388595 -27.814973 -32.014517 -24.372143 -55.675673 + -41.476403 -63.584572"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1325.061.2017171204350.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1325.061.2017171204350.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1325.061.2017171204350.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1325.061.2017272135048.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1330.061.2017171204411.hdf","time_start":"2000-02-28T13:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077263","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T13:35:00.000Z","id":"G1462765662-LAADS","original_format":"ECHO10","granule_size":"167.588603019714","browse_flag":true,"polygons":[["-57.18963 + -77.879917 -63.91214 -34.771456 -45.673177 -33.798573 -41.413201 -63.475712 + -57.18963 -77.879917"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1330.061.2017171204411.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1330.061.2017171204411.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1330.061.2017171204411.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1330.061.2017272135748.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1335.061.2017171205612.hdf","time_start":"2000-02-28T13:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078838","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T13:40:00.000Z","id":"G1462766031-LAADS","original_format":"ECHO10","granule_size":"156.508516311646","browse_flag":true,"polygons":[["-68.811783 + -109.543966 -81.485489 -25.258362 -63.432681 -33.913656 -57.21676 -77.542218 + -68.811783 -109.543966"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1335.061.2017171205612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1335.061.2017171205612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1335.061.2017171205612.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1335.061.2017272135208.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1340.061.2017171210726.hdf","time_start":"2000-02-28T13:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078839","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T13:45:00.000Z","id":"G1462766028-LAADS","original_format":"ECHO10","granule_size":"109.839846611023","browse_flag":true,"polygons":[["-68.45938 + -160.721848 -79.974818 119.313025 -80.889186 -24.11067 -69.036835 -109.025145 + -68.45938 -160.721848"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1340.061.2017171210726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1340.061.2017171210726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1340.061.2017171210726.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1340.061.2017272132905.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1430.061.2017171204758.hdf","time_start":"2000-02-28T14:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076932","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T14:35:00.000Z","id":"G1462765539-LAADS","original_format":"ECHO10","granule_size":"52.930721282959","browse_flag":true,"polygons":[["78.019624 + -70.097372 67.726153 1.409913 70.111067 53.415735 82.787228 147.11243 78.019624 + -70.097372"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1430.061.2017171204758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1430.061.2017171204758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1430.061.2017171204758.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1430.061.2017272132748.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1435.061.2017171204424.hdf","time_start":"2000-02-28T14:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077574","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T14:40:00.000Z","id":"G1462765712-LAADS","original_format":"ECHO10","granule_size":"149.320199966431","browse_flag":true,"polygons":[["60.235063 + -65.821717 54.790235 -26.375714 68.088834 1.030162 78.462056 -72.347131 60.235063 + -65.821717"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1435.061.2017171204424.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1435.061.2017171204424.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1435.061.2017171204424.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1435.061.2017272134410.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1440.061.2017171204337.hdf","time_start":"2000-02-28T14:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077264","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T14:45:00.000Z","id":"G1462765675-LAADS","original_format":"ECHO10","granule_size":"159.649004936218","browse_flag":true,"polygons":[["42.434168 + -66.878312 38.661838 -39.02268 55.065695 -26.934343 60.722761 -66.411325 42.434168 + -66.878312"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1440.061.2017171204337.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1440.061.2017171204337.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1440.061.2017171204337.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1440.061.2017272135648.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1445.061.2017171204349.hdf","time_start":"2000-02-28T14:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077265","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T14:50:00.000Z","id":"G1462765663-LAADS","original_format":"ECHO10","granule_size":"158.342805862427","browse_flag":true,"polygons":[["24.615889 + -69.156571 21.486132 -46.298786 38.85715 -39.460315 42.863541 -67.135301 24.615889 + -69.156571"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1445.061.2017171204349.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1445.061.2017171204349.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1445.061.2017171204349.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1445.061.2017272135056.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1450.061.2017171204432.hdf","time_start":"2000-02-28T14:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077266","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T14:55:00.000Z","id":"G1462765664-LAADS","original_format":"ECHO10","granule_size":"149.195610046387","browse_flag":true,"polygons":[["6.837507 + -72.219813 3.862615 -51.255105 21.623767 -46.589793 24.942939 -69.266305 6.837507 + -72.219813"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1450.061.2017171204432.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1450.061.2017171204432.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1450.061.2017171204432.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1450.061.2017272134511.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1455.061.2017171204528.hdf","time_start":"2000-02-28T14:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077267","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T15:00:00.000Z","id":"G1462765665-LAADS","original_format":"ECHO10","granule_size":"169.865922927856","browse_flag":true,"polygons":[["-10.856065 + -76.207106 -14.011243 -54.955134 3.955426 -51.365634 7.027656 -72.231247 -10.856065 + -76.207106"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1455.061.2017171204528.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1455.061.2017171204528.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1455.061.2017171204528.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1455.061.2017272134612.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1500.061.2017171204419.hdf","time_start":"2000-02-28T15:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077268","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T15:05:00.000Z","id":"G1462765668-LAADS","original_format":"ECHO10","granule_size":"167.103267669678","browse_flag":true,"polygons":[["-28.324613 + -81.872536 -32.05538 -57.642583 -13.913497 -54.729755 -10.759836 -76.261936 + -28.324613 -81.872536"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1500.061.2017171204419.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1500.061.2017171204419.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1500.061.2017171204419.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1500.061.2017272134602.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1505.061.2017171204356.hdf","time_start":"2000-02-28T15:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076933","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T15:10:00.000Z","id":"G1462765536-LAADS","original_format":"ECHO10","granule_size":"163.759393692017","browse_flag":true,"polygons":[["-45.143262 + -90.725176 -50.030073 -59.39245 -31.809187 -57.218616 -28.2375 -81.840956 + -45.143262 -90.725176"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1505.061.2017171204356.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1505.061.2017171204356.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1505.061.2017171204356.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1505.061.2017272134457.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1510.061.2017171205559.hdf","time_start":"2000-02-28T15:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077575","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T15:15:00.000Z","id":"G1462765715-LAADS","original_format":"ECHO10","granule_size":"166.947933197021","browse_flag":true,"polygons":[["-60.330667 + -107.549104 -67.882711 -59.030648 -49.649988 -58.745332 -45.094467 -90.573498 + -60.330667 -107.549104"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1510.061.2017171205559.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1510.061.2017171205559.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1510.061.2017171205559.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1510.061.2017272135908.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1515.061.2017171205611.hdf","time_start":"2000-02-28T15:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078533","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T15:20:00.000Z","id":"G1462765884-LAADS","original_format":"ECHO10","granule_size":"154.416757583618","browse_flag":true,"polygons":[["-70.082815 + -145.223565 -85.119695 -36.1547 -67.377801 -58.116204 -60.390611 -107.146103 + -70.082815 -145.223565"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1515.061.2017171205611.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1515.061.2017171205611.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1515.061.2017171205611.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1515.061.2017272134933.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1520.061.2017171205605.hdf","time_start":"2000-02-28T15:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078840","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T15:25:00.000Z","id":"G1462766030-LAADS","original_format":"ECHO10","granule_size":"83.5302629470825","browse_flag":true,"polygons":[["-66.444839 + 165.392006 -76.105498 98.271064 -84.499007 -36.05885 -70.364099 -144.789615 + -66.444839 165.392006"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1520.061.2017171205605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1520.061.2017171205605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1520.061.2017171205605.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1520.061.2017272132859.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1610.061.2017171205606.hdf","time_start":"2000-02-28T16:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078841","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T16:15:00.000Z","id":"G1462766029-LAADS","original_format":"ECHO10","granule_size":"76.7124557495117","browse_flag":true,"polygons":[["74.097867 + -92.562845 65.413421 -31.717734 71.073408 16.793906 86.125623 145.459142 74.097867 + -92.562845"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1610.061.2017171205606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1610.061.2017171205606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1610.061.2017171205606.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1610.061.2017272132918.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1615.061.2017171205620.hdf","time_start":"2000-02-28T16:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078842","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T16:20:00.000Z","id":"G1462766032-LAADS","original_format":"ECHO10","granule_size":"156.0515832901","browse_flag":true,"polygons":[["56.357541 + -90.606575 51.424789 -54.6267 65.76054 -32.204277 74.571443 -94.039888 56.357541 + -90.606575"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1615.061.2017171205620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1615.061.2017171205620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1615.061.2017171205620.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1615.061.2017272134142.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1620.061.2017171204446.hdf","time_start":"2000-02-28T16:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077269","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T16:25:00.000Z","id":"G1462765670-LAADS","original_format":"ECHO10","granule_size":"156.681020736694","browse_flag":true,"polygons":[["38.459143 + -92.02847 34.890633 -65.666953 51.67964 -55.163098 56.836201 -91.088709 38.459143 + -92.02847"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1620.061.2017171204446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1620.061.2017171204446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1620.061.2017171204446.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1620.061.2017272134716.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1625.061.2017171204546.hdf","time_start":"2000-02-28T16:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077576","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T16:30:00.000Z","id":"G1462765713-LAADS","original_format":"ECHO10","granule_size":"135.051072120667","browse_flag":true,"polygons":[["20.646748 + -94.497474 17.584266 -72.269467 35.071941 -66.074192 38.870056 -92.252111 + 20.646748 -94.497474"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1625.061.2017171204546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1625.061.2017171204546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1625.061.2017171204546.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1625.061.2017272133738.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1630.061.2017171204519.hdf","time_start":"2000-02-28T16:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077270","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T16:35:00.000Z","id":"G1462765672-LAADS","original_format":"ECHO10","granule_size":"150.946018218994","browse_flag":true,"polygons":[["2.890314 + -97.759393 -0.100067 -76.890373 17.711507 -72.527844 20.947397 -94.604399 + 2.890314 -97.759393"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1630.061.2017171204519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1630.061.2017171204519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1630.061.2017171204519.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1630.061.2017272134222.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1635.061.2017171204537.hdf","time_start":"2000-02-28T16:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076934","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T16:40:00.000Z","id":"G1462765541-LAADS","original_format":"ECHO10","granule_size":"158.214637756348","browse_flag":true,"polygons":[["-14.776752 + -102.067855 -18.032104 -80.338536 -0.020946 -76.918273 3.056542 -97.801352 + -14.776752 -102.067855"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1635.061.2017171204537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1635.061.2017171204537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1635.061.2017171204537.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1635.061.2017272134550.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1640.061.2017171204450.hdf","time_start":"2000-02-28T16:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077271","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T16:45:00.000Z","id":"G1462765671-LAADS","original_format":"ECHO10","granule_size":"153.409974098206","browse_flag":true,"polygons":[["-32.151802 + -108.18799 -36.06387 -82.845525 -17.903862 -80.076545 -14.685255 -102.047777 + -32.151802 -108.18799"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1640.061.2017171204450.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1640.061.2017171204450.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1640.061.2017171204450.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1640.061.2017272134236.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1645.061.2017171204455.hdf","time_start":"2000-02-28T16:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077577","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T16:50:00.000Z","id":"G1462765709-LAADS","original_format":"ECHO10","granule_size":"164.657954216003","browse_flag":true,"polygons":[["-48.732154 + -118.216726 -54.023746 -84.309975 -35.793015 -82.378699 -32.068011 -108.146295 + -48.732154 -118.216726"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1645.061.2017171204455.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1645.061.2017171204455.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1645.061.2017171204455.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1645.061.2017272135741.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1650.061.2017171205154.hdf","time_start":"2000-02-28T16:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077272","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T16:55:00.000Z","id":"G1462765677-LAADS","original_format":"ECHO10","granule_size":"163.026055335999","browse_flag":true,"polygons":[["-63.231234 + -138.238304 -71.830577 -82.830663 -53.61392 -83.60051 -48.700098 -118.020357 + -63.231234 -138.238304"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1650.061.2017171205154.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1650.061.2017171205154.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1650.061.2017171205154.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1650.061.2017272135725.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1655.061.2017171204641.hdf","time_start":"2000-02-28T16:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077273","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T17:00:00.000Z","id":"G1462765676-LAADS","original_format":"ECHO10","granule_size":"153.501741409302","browse_flag":true,"polygons":[["-70.599628 + 178.132901 -87.396785 -7.223797 -71.301814 -81.856301 -63.330976 -137.772473 + -70.599628 178.132901"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1655.061.2017171204641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1655.061.2017171204641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1655.061.2017171204641.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1655.061.2017272134317.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1700.061.2017171204548.hdf","time_start":"2000-02-28T17:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077274","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T17:05:00.000Z","id":"G1462765673-LAADS","original_format":"ECHO10","granule_size":"53.4996957778931","browse_flag":true,"polygons":[["-63.972719 + 133.036103 -72.193284 75.212242 -86.955392 -16.740802 -70.930265 178.395202 + -63.972719 133.036103"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1700.061.2017171204548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1700.061.2017171204548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1700.061.2017171204548.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1700.061.2017272132708.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1750.061.2017171204630.hdf","time_start":"2000-02-28T17:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076935","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T17:55:00.000Z","id":"G1462765534-LAADS","original_format":"ECHO10","granule_size":"109.304116249084","browse_flag":true,"polygons":[["70.15905 + -116.126709 62.704017 -63.354105 71.206459 -20.499624 86.903173 -171.343153 + 70.15905 -116.126709"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1750.061.2017171204630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1750.061.2017171204630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1750.061.2017171204630.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1750.061.2017272133250.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.1755.061.2017171204617.hdf","time_start":"2000-02-28T17:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077275","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T18:00:00.000Z","id":"G1462765682-LAADS","original_format":"ECHO10","granule_size":"155.604297637939","browse_flag":true,"polygons":[["52.392792 + -115.479293 47.879782 -82.421419 63.030729 -63.89515 70.646801 -117.148551 + 52.392792 -115.479293"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1755.061.2017171204617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.1755.061.2017171204617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.1755.061.2017171204617.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.1755.061.2017272134039.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2000.061.2017171204543.hdf","time_start":"2000-02-28T20:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077276","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T20:05:00.000Z","id":"G1462765681-LAADS","original_format":"ECHO10","granule_size":"163.018752098083","browse_flag":true,"polygons":[["-39.683806 + -161.419183 -44.086835 -133.114071 -25.886546 -130.654676 -22.496016 -153.917628 + -39.683806 -161.419183"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2000.061.2017171204543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2000.061.2017171204543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2000.061.2017171204543.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2000.061.2017272140239.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2005.061.2017171204447.hdf","time_start":"2000-02-28T20:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077277","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T20:10:00.000Z","id":"G1462765679-LAADS","original_format":"ECHO10","granule_size":"164.464020729065","browse_flag":true,"polygons":[["-55.6104 + -174.680911 -61.992429 -133.76719 -43.752623 -132.54672 -39.617924 -161.319602 + -55.6104 -174.680911"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2005.061.2017171204447.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2005.061.2017171204447.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2005.061.2017171204447.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2005.061.2017272135811.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2010.061.2017171205638.hdf","time_start":"2000-02-28T20:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078843","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T20:15:00.000Z","id":"G1462766033-LAADS","original_format":"ECHO10","granule_size":"161.722334861755","browse_flag":true,"polygons":[["-67.964707 + 156.344044 -79.643969 -127.181598 -61.526706 -132.96878 -55.622252 -174.376312 + -67.964707 156.344044"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2010.061.2017171205638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2010.061.2017171205638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2010.061.2017171205638.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2010.061.2017272135641.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2015.061.2017171205624.hdf","time_start":"2000-02-28T20:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078844","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T20:20:00.000Z","id":"G1462766036-LAADS","original_format":"ECHO10","granule_size":"118.902760505676","browse_flag":true,"polygons":[["-69.227833 + 105.364391 -81.807487 17.164933 -79.057461 -125.892081 -68.164006 156.880349 + -69.227833 105.364391"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2015.061.2017171205624.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2015.061.2017171205624.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2015.061.2017171205624.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2015.061.2017272133238.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2105.061.2017171205612.hdf","time_start":"2000-02-28T21:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078845","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T21:10:00.000Z","id":"G1462766034-LAADS","original_format":"ECHO10","granule_size":"37.2115745544434","browse_flag":true,"polygons":[["79.888571 + -170.93947 68.710633 -92.907946 69.430605 -40.142669 80.976301 43.810181 79.888571 + -170.93947"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2105.061.2017171205612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2105.061.2017171205612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2105.061.2017171205612.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2105.061.2017272132836.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2110.061.2017171205643.hdf","time_start":"2000-02-28T21:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078846","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T21:15:00.000Z","id":"G1462766037-LAADS","original_format":"ECHO10","granule_size":"140.078186035156","browse_flag":true,"polygons":[["62.239914 + -164.7396 56.478825 -123.190163 69.025636 -93.13802 80.318016 -173.683495 + 62.239914 -164.7396"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2110.061.2017171205643.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2110.061.2017171205643.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2110.061.2017171205643.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2110.061.2017272133953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2115.061.2017171205636.hdf","time_start":"2000-02-28T21:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078847","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T21:20:00.000Z","id":"G1462766038-LAADS","original_format":"ECHO10","granule_size":"156.01978969574","browse_flag":true,"polygons":[["44.43869 + -165.565818 40.555536 -136.867897 56.774744 -123.784843 62.731494 -165.395812 + 44.43869 -165.565818"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2115.061.2017171205636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2115.061.2017171205636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2115.061.2017171205636.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2115.061.2017272135844.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2120.061.2017171205656.hdf","time_start":"2000-02-28T21:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079150","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T21:25:00.000Z","id":"G1462766076-LAADS","original_format":"ECHO10","granule_size":"147.129576683044","browse_flag":true,"polygons":[["26.623371 + -167.744106 23.449641 -144.511729 40.751889 -137.297289 44.880327 -165.843919 + 26.623371 -167.744106"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2120.061.2017171205656.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2120.061.2017171205656.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2120.061.2017171205656.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2120.061.2017272135330.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2125.061.2017171204421.hdf","time_start":"2000-02-28T21:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077278","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T21:30:00.000Z","id":"G1462765683-LAADS","original_format":"ECHO10","granule_size":"139.06932926178","browse_flag":true,"polygons":[["8.837968 + -170.732212 5.861439 -149.6591 23.59317 -144.821741 26.964414 -167.880047 + 8.837968 -170.732212"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2125.061.2017171204421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2125.061.2017171204421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2125.061.2017171204421.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2125.061.2017272134205.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2130.061.2017171204548.hdf","time_start":"2000-02-28T21:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077578","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T21:35:00.000Z","id":"G1462765716-LAADS","original_format":"ECHO10","granule_size":"149.68883228302","browse_flag":true,"polygons":[["-8.854132 + -174.633184 -11.980582 -153.481535 5.960022 -149.800335 9.050767 -170.792187 + -8.854132 -174.633184"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2130.061.2017171204548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2130.061.2017171204548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2130.061.2017171204548.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2130.061.2017272134314.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2135.061.2017171204503.hdf","time_start":"2000-02-28T21:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077579","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T21:40:00.000Z","id":"G1462765718-LAADS","original_format":"ECHO10","granule_size":"155.595126152039","browse_flag":true,"polygons":[["-26.464775 + 179.956095 -30.10757 -156.278661 -11.898087 -153.2798 -8.757985 -174.637985 + -26.464775 179.956095"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2135.061.2017171204503.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2135.061.2017171204503.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2135.061.2017171204503.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2135.061.2017272135031.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2140.061.2017171205652.hdf","time_start":"2000-02-28T21:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078848","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T21:45:00.000Z","id":"G1462766040-LAADS","original_format":"ECHO10","granule_size":"145.131426811218","browse_flag":true,"polygons":[["-43.382701 + 171.592739 -48.098898 -158.159282 -29.883599 -155.882984 -26.376435 179.983665 + -43.382701 171.592739"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2140.061.2017171205652.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2140.061.2017171205652.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2140.061.2017171205652.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2140.061.2017272134600.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2145.061.2017171205700.hdf","time_start":"2000-02-28T21:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078849","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T21:50:00.000Z","id":"G1462766044-LAADS","original_format":"ECHO10","granule_size":"164.391021728516","browse_flag":true,"polygons":[["-58.850596 + 156.083527 -65.973071 -158.186687 -47.733753 -157.535167 -43.335227 171.740256 + -58.850596 156.083527"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2145.061.2017171205700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2145.061.2017171205700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2145.061.2017171205700.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2145.061.2017272135947.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2150.061.2017171205636.hdf","time_start":"2000-02-28T21:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079151","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T21:55:00.000Z","id":"G1462766092-LAADS","original_format":"ECHO10","granule_size":"150.9016456604","browse_flag":true,"polygons":[["-69.55637 + 121.3362 -83.409762 -143.526733 -65.476538 -157.250926 -58.884692 156.433024 + -69.55637 121.3362"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2150.061.2017171205636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2150.061.2017171205636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2150.061.2017171205636.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2150.061.2017272134808.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2155.061.2017171205630.hdf","time_start":"2000-02-28T21:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079152","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T22:00:00.000Z","id":"G1462766074-LAADS","original_format":"ECHO10","granule_size":"87.2840929031372","browse_flag":true,"polygons":[["-67.523107 + 70.656264 -77.966514 -2.129587 -82.793023 -142.642505 -69.859408 121.860492 + -67.523107 70.656264"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2155.061.2017171205630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2155.061.2017171205630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2155.061.2017171205630.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2155.061.2017272132835.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2245.061.2017171210936.hdf","time_start":"2000-02-28T22:45:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080134","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T22:50:00.000Z","id":"G1462766081-LAADS","original_format":"ECHO10","granule_size":"60.3780565261841","browse_flag":true,"polygons":[["75.988818 + 167.664032 66.590984 -126.76884 70.71706 -76.214116 84.625475 31.82884 75.988818 + 167.664032"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2245.061.2017171210936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2245.061.2017171210936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2245.061.2017171210936.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2245.061.2017272132925.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2250.061.2017171205954.hdf","time_start":"2000-02-28T22:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079153","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T22:55:00.000Z","id":"G1462766077-LAADS","original_format":"ECHO10","granule_size":"151.319067001343","browse_flag":true,"polygons":[["58.266197 + 170.565661 53.096336 -151.853546 66.941386 -127.202733 76.452921 165.911194 + 58.266197 170.565661"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2250.061.2017171205954.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2250.061.2017171205954.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2250.061.2017171205954.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2250.061.2017272134932.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2255.061.2017171204706.hdf","time_start":"2000-02-28T22:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077580","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T23:00:00.000Z","id":"G1462765717-LAADS","original_format":"ECHO10","granule_size":"164.020934104919","browse_flag":true,"polygons":[["40.459708 + 169.310763 36.792905 -163.615688 53.359947 -152.397236 58.749855 170.03617 + 40.459708 169.310763"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2255.061.2017171204706.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2255.061.2017171204706.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2255.061.2017171204706.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2255.061.2017272135723.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2300.061.2017171204452.hdf","time_start":"2000-02-28T23:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077279","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T23:05:00.000Z","id":"G1462765680-LAADS","original_format":"ECHO10","granule_size":"152.716595649719","browse_flag":true,"polygons":[["22.64245 + 166.937564 19.548634 -170.542316 36.981074 -164.037784 40.879743 169.07502 + 22.64245 166.937564"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2300.061.2017171204452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2300.061.2017171204452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2300.061.2017171204452.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2300.061.2017272134901.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2305.061.2017171204658.hdf","time_start":"2000-02-28T23:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077581","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T23:10:00.000Z","id":"G1462765722-LAADS","original_format":"ECHO10","granule_size":"144.622755050659","browse_flag":true,"polygons":[["4.874492 + 163.768092 1.892719 -175.328398 19.680933 -170.818005 22.957107 166.821887 + 4.874492 163.768092"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2305.061.2017171204658.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2305.061.2017171204658.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2305.061.2017171204658.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2305.061.2017272134748.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2310.061.2017171204925.hdf","time_start":"2000-02-28T23:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715076936","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T23:15:00.000Z","id":"G1462765535-LAADS","original_format":"ECHO10","granule_size":"151.522362709045","browse_flag":true,"polygons":[["-12.803893 + 159.602264 -16.012549 -178.898047 1.977652 -175.393414 5.055808 163.72002 + -12.803893 159.602264"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2310.061.2017171204925.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2310.061.2017171204925.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2310.061.2017171204925.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2310.061.2017272134241.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2315.061.2017171204735.hdf","time_start":"2000-02-28T23:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077882","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T23:20:00.000Z","id":"G1462765792-LAADS","original_format":"ECHO10","granule_size":"163.385273933411","browse_flag":true,"polygons":[["-30.234463 + 153.750641 -34.047431 178.500535 -15.899223 -178.657242 -12.711451 159.615963 + -30.234463 153.750641"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2315.061.2017171204735.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2315.061.2017171204735.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2315.061.2017171204735.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2315.061.2017272140312.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2320.061.2017171204537.hdf","time_start":"2000-02-28T23:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077582","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T23:25:00.000Z","id":"G1462765719-LAADS","original_format":"ECHO10","granule_size":"158.542297363281","browse_flag":true,"polygons":[["-47.019752 + 144.278951 -52.109384 176.876539 -33.793335 178.950845 -30.148086 153.783652 + -47.019752 144.278951"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2320.061.2017171204537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2320.061.2017171204537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2320.061.2017171204537.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2320.061.2017272135914.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2325.061.2017171210258.hdf","time_start":"2000-02-28T23:25:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079154","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T23:30:00.000Z","id":"G1462766080-LAADS","original_format":"ECHO10","granule_size":"165.387422561646","browse_flag":true,"polygons":[["-61.872518 + 125.881902 -69.938757 177.760738 -51.712526 177.562132 -46.978802 144.450609 + -61.872518 125.881902"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2325.061.2017171210258.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2325.061.2017171210258.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2325.061.2017171210258.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2325.061.2017272140530.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2330.061.2017171205701.hdf","time_start":"2000-02-28T23:30:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079155","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-28T23:35:00.000Z","id":"G1462766086-LAADS","original_format":"ECHO10","granule_size":"134.817390441895","browse_flag":true,"polygons":[["-70.447634 + 85.047284 -86.678363 -140.755171 -69.420843 178.713567 -61.950432 126.314805 + -70.447634 85.047284"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2330.061.2017171205701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2330.061.2017171205701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2330.061.2017171205701.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2330.061.2017272133340.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000059.2335.061.2017171205636.hdf","time_start":"2000-02-28T23:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078850","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-28T23:40:00.000Z","id":"G1462766047-LAADS","original_format":"ECHO10","granule_size":"63.8764295578003","browse_flag":true,"polygons":[["-65.249234 + 37.550936 -74.060454 -24.516432 -86.031012 -143.053496 -70.812711 85.41399 + -65.249234 37.550936"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2335.061.2017171205636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000059.2335.061.2017171205636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/059/MOD02QKM.A2000059.2335.061.2017171205636.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/059/MOBRGB.A2000059.2335.061.2017272132953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0025.061.2017171205801.hdf","time_start":"2000-02-29T00:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077280","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T00:30:00.000Z","id":"G1462768337-LAADS","original_format":"ECHO10","granule_size":"86.8627519607544","browse_flag":true,"polygons":[["72.048129 + 144.553548 64.046916 -159.108428 71.254964 -113.342912 87.13619 53.028617 + 72.048129 144.553548"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0025.061.2017171205801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0025.061.2017171205801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0025.061.2017171205801.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0025.061.2017272133319.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0030.061.2017171204424.hdf","time_start":"2000-02-29T00:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077281","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T00:35:00.000Z","id":"G1462768343-LAADS","original_format":"ECHO10","granule_size":"158.340570449829","browse_flag":true,"polygons":[["54.288808 + 145.719361 49.59143 -179.912707 64.387778 -159.638846 72.530222 143.314178 + 54.288808 145.719361"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0030.061.2017171204424.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0030.061.2017171204424.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0030.061.2017171204424.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0030.061.2017272134833.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0035.061.2017171205115.hdf","time_start":"2000-02-29T00:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077583","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T00:40:00.000Z","id":"G1462768485-LAADS","original_format":"ECHO10","granule_size":"165.257199287415","browse_flag":true,"polygons":[["36.476454 + 144.133438 32.992644 169.834641 49.833706 179.573221 54.76382 145.284499 36.476454 + 144.133438"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0035.061.2017171205115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0035.061.2017171205115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0035.061.2017171205115.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0035.061.2017272140130.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0040.061.2017171204549.hdf","time_start":"2000-02-29T00:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077883","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T00:45:00.000Z","id":"G1462768645-LAADS","original_format":"ECHO10","granule_size":"158.089654922485","browse_flag":true,"polygons":[["18.663324 + 141.579185 15.626745 163.527727 33.166647 169.444519 36.875766 143.933804 + 18.663324 141.579185"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0040.061.2017171204549.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0040.061.2017171204549.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0040.061.2017171204549.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0040.061.2017272135819.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0045.061.2017171204527.hdf","time_start":"2000-02-29T00:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077584","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T00:50:00.000Z","id":"G1462768474-LAADS","original_format":"ECHO10","granule_size":"149.3020362854","browse_flag":true,"polygons":[["0.917619 + 138.218669 -2.085771 159.059231 15.749072 163.287437 18.95006 141.480187 0.917619 + 138.218669"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0045.061.2017171204527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0045.061.2017171204527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0045.061.2017171204527.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0045.061.2017272135352.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0050.061.2017171204749.hdf","time_start":"2000-02-29T00:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077585","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T00:55:00.000Z","id":"G1462768478-LAADS","original_format":"ECHO10","granule_size":"163.659191131592","browse_flag":true,"polygons":[["-16.738904 + 133.760695 -20.046358 155.727215 -2.012233 159.070506 1.066577 138.186495 + -16.738904 133.760695"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0050.061.2017171204749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0050.061.2017171204749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0050.061.2017171204749.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0050.061.2017272135158.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0055.061.2017171204740.hdf","time_start":"2000-02-29T00:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077884","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T01:00:00.000Z","id":"G1462768639-LAADS","original_format":"ECHO10","granule_size":"163.357284545898","browse_flag":true,"polygons":[["-34.054603 + 127.343115 -38.074851 153.315792 -19.902287 156.013815 -16.648349 133.781709 + -34.054603 127.343115"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0055.061.2017171204740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0055.061.2017171204740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0055.061.2017171204740.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0055.061.2017272134110.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0100.061.2017171204524.hdf","time_start":"2000-02-29T01:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077586","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T01:05:00.000Z","id":"G1462768486-LAADS","original_format":"ECHO10","granule_size":"159.20076751709","browse_flag":true,"polygons":[["-50.495918 + 116.623367 -56.022975 152.017479 -37.787738 153.808911 -33.97225 127.389522 + -50.495918 116.623367"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0100.061.2017171204524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0100.061.2017171204524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0100.061.2017171204524.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0100.061.2017272135454.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0105.061.2017171204612.hdf","time_start":"2000-02-29T01:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077885","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T01:10:00.000Z","id":"G1462768634-LAADS","original_format":"ECHO10","granule_size":"158.168650627136","browse_flag":true,"polygons":[["-64.62543 + 94.536773 -73.894868 154.16224 -55.598647 152.693923 -50.472731 116.842718 + -64.62543 94.536773"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0105.061.2017171204612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0105.061.2017171204612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0105.061.2017171204612.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0105.061.2017272135227.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0110.061.2017171204436.hdf","time_start":"2000-02-29T01:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077587","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T01:15:00.000Z","id":"G1462768477-LAADS","original_format":"ECHO10","granule_size":"132.22234249115","browse_flag":true,"polygons":[["-70.541853 + 48.18414 -86.775224 -91.333299 -73.345992 155.358199 -64.74448 95.037705 -70.541853 + 48.18414"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0110.061.2017171204436.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0110.061.2017171204436.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0110.061.2017171204436.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0110.061.2017272133058.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0115.061.2017171204514.hdf","time_start":"2000-02-29T01:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077282","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T01:20:00.000Z","id":"G1462768342-LAADS","original_format":"ECHO10","granule_size":"38.1160516738892","browse_flag":true,"polygons":[["-62.570647 + 5.903189 -70.132689 -47.925471 -86.703641 -102.874218 -70.947318 48.306292 + -62.570647 5.903189"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0115.061.2017171204514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0115.061.2017171204514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0115.061.2017171204514.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0115.061.2017272132923.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0205.061.2017171205955.hdf","time_start":"2000-02-29T02:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077886","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T02:10:00.000Z","id":"G1462768638-LAADS","original_format":"ECHO10","granule_size":"118.753673553467","browse_flag":true,"polygons":[["68.094166 + 120.64494 61.16603 169.92365 70.939465 -150.603973 85.607891 90.227992 68.094166 + 120.64494"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0205.061.2017171205955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0205.061.2017171205955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0205.061.2017171205955.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0205.061.2017272133719.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0210.061.2017171204531.hdf","time_start":"2000-02-29T02:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077588","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T02:15:00.000Z","id":"G1462768475-LAADS","original_format":"ECHO10","granule_size":"164.855422019958","browse_flag":true,"polygons":[["50.313719 + 120.783214 45.99389 152.518563 61.487778 169.351238 68.584575 119.745412 50.313719 + 120.783214"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0210.061.2017171204531.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0210.061.2017171204531.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0210.061.2017171204531.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0210.061.2017272134013.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0215.061.2017171204918.hdf","time_start":"2000-02-29T02:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077887","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T02:20:00.000Z","id":"G1462768640-LAADS","original_format":"ECHO10","granule_size":"159.156126022339","browse_flag":true,"polygons":[["32.499276 + 118.906683 29.161342 143.472964 46.218589 152.030458 50.77485 120.397356 32.499276 + 118.906683"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0215.061.2017171204918.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0215.061.2017171204918.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0215.061.2017171204918.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0215.061.2017272134324.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0220.061.2017171205313.hdf","time_start":"2000-02-29T02:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077888","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T02:25:00.000Z","id":"G1462768641-LAADS","original_format":"ECHO10","granule_size":"162.729291915894","browse_flag":true,"polygons":[["14.693158 + 116.17849 11.694399 137.689909 29.322238 143.115295 32.874729 118.736343 14.693158 + 116.17849"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0220.061.2017171205313.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0220.061.2017171205313.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0220.061.2017171205313.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0220.061.2017272140053.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0225.061.2017171204535.hdf","time_start":"2000-02-29T02:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077283","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T02:30:00.000Z","id":"G1462768340-LAADS","original_format":"ECHO10","granule_size":"164.146878242493","browse_flag":true,"polygons":[["-3.023933 + 112.616244 -6.064311 133.500294 11.807379 137.483296 14.951043 116.096316 + -3.023933 112.616244"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0225.061.2017171204535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0225.061.2017171204535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0225.061.2017171204535.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0225.061.2017272135854.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0230.061.2017171204529.hdf","time_start":"2000-02-29T02:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077589","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T02:35:00.000Z","id":"G1462768470-LAADS","original_format":"ECHO10","granule_size":"160.74311542511","browse_flag":true,"polygons":[["-20.647115 + 107.818253 -24.071852 130.382518 -5.998876 133.57603 -2.907222 112.590318 + -20.647115 107.818253"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0230.061.2017171204529.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0230.061.2017171204529.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0230.061.2017171204529.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0230.061.2017272135831.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0235.061.2017171204627.hdf","time_start":"2000-02-29T02:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077590","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T02:40:00.000Z","id":"G1462768473-LAADS","original_format":"ECHO10","granule_size":"165.733276367188","browse_flag":true,"polygons":[["-37.824617 + 100.72501 -42.088929 128.183431 -23.897839 130.725879 -20.555876 107.842256 + -37.824617 100.72501"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0235.061.2017171204627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0235.061.2017171204627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0235.061.2017171204627.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0235.061.2017272134533.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0240.061.2017171204516.hdf","time_start":"2000-02-29T02:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077591","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T02:45:00.000Z","id":"G1462768479-LAADS","original_format":"ECHO10","granule_size":"167.59080696106","browse_flag":true,"polygons":[["-53.944082 + 88.408718 -60.010878 127.285982 -41.771287 128.724973 -37.753625 100.808679 + -53.944082 88.408718"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0240.061.2017171204516.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0240.061.2017171204516.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0240.061.2017171204516.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0240.061.2017272140215.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0245.061.2017171204509.hdf","time_start":"2000-02-29T02:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077592","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T02:50:00.000Z","id":"G1462768476-LAADS","original_format":"ECHO10","granule_size":"153.157682418823","browse_flag":true,"polygons":[["-66.956434 + 62.0052 -77.723054 131.753696 -59.560384 127.991629 -53.943657 88.684151 -66.956434 + 62.0052"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0245.061.2017171204509.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0245.061.2017171204509.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0245.061.2017171204509.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0245.061.2017272134904.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0250.061.2017171204528.hdf","time_start":"2000-02-29T02:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077284","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T02:55:00.000Z","id":"G1462768338-LAADS","original_format":"ECHO10","granule_size":"128.893641471863","browse_flag":true,"polygons":[["-69.83181 + 11.695545 -83.561133 -86.913263 -77.142178 133.238735 -67.126326 62.545057 + -69.83181 11.695545"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0250.061.2017171204528.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0250.061.2017171204528.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0250.061.2017171204528.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0250.061.2017272133116.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0340.061.2017171205631.hdf","time_start":"2000-02-29T03:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079156","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T03:45:00.000Z","id":"G1462768847-LAADS","original_format":"ECHO10","granule_size":"27.0693473815918","browse_flag":true,"polygons":[["81.812193 + 87.10391 69.479436 173.468159 68.465317 -134.056527 79.077686 -58.005302 81.812193 + 87.10391"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0340.061.2017171205631.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0340.061.2017171205631.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0340.061.2017171205631.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0340.061.2017272133018.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0345.061.2017171205704.hdf","time_start":"2000-02-29T03:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079157","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T03:50:00.000Z","id":"G1462768856-LAADS","original_format":"ECHO10","granule_size":"142.806261062622","browse_flag":true,"polygons":[["64.128813 + 96.306612 58.035986 140.06125 69.845493 173.258117 82.197661 83.480257 64.128813 + 96.306612"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0345.061.2017171205704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0345.061.2017171205704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0345.061.2017171205704.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0345.061.2017272133731.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0350.061.2017171205703.hdf","time_start":"2000-02-29T03:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078851","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T03:55:00.000Z","id":"G1462768715-LAADS","original_format":"ECHO10","granule_size":"163.750109672546","browse_flag":true,"polygons":[["46.337591 + 95.779904 42.324586 125.322227 58.340093 139.46985 64.623201 95.65628 46.337591 + 95.779904"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0350.061.2017171205703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0350.061.2017171205703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0350.061.2017171205703.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0350.061.2017272134553.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0355.061.2017171205701.hdf","time_start":"2000-02-29T03:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078852","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T04:00:00.000Z","id":"G1462768713-LAADS","original_format":"ECHO10","granule_size":"160.156393051147","browse_flag":true,"polygons":[["28.521385 + 93.72391 25.301353 117.260219 42.532584 124.863186 46.777962 95.523257 28.521385 + 93.72391"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0355.061.2017171205701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0355.061.2017171205701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0355.061.2017171205701.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0355.061.2017272134458.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0400.061.2017171205700.hdf","time_start":"2000-02-29T04:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079158","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T04:05:00.000Z","id":"G1462768848-LAADS","original_format":"ECHO10","granule_size":"165.761382102966","browse_flag":true,"polygons":[["10.734252 + 90.738879 7.750303 111.914057 25.452471 116.92441 28.864975 93.493071 10.734252 + 90.738879"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0400.061.2017171205700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0400.061.2017171205700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0400.061.2017171205700.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0400.061.2017272135205.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0405.061.2017171204708.hdf","time_start":"2000-02-29T04:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077593","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T04:10:00.000Z","id":"G1462768482-LAADS","original_format":"ECHO10","granule_size":"161.926186561584","browse_flag":true,"polygons":[["-6.967866 + 86.951616 -10.062354 107.989105 7.852091 111.760113 10.955825 90.669236 -6.967866 + 86.951616"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0405.061.2017171204708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0405.061.2017171204708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0405.061.2017171204708.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0405.061.2017272135437.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0410.061.2017171204615.hdf","time_start":"2000-02-29T04:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077285","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T04:15:00.000Z","id":"G1462768339-LAADS","original_format":"ECHO10","granule_size":"159.466830253601","browse_flag":true,"polygons":[["-24.533281 + 81.775194 -28.09798 105.11002 -9.992538 108.15843 -6.870923 86.942009 -24.533281 + 81.775194"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0410.061.2017171204615.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0410.061.2017171204615.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0410.061.2017171204615.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0410.061.2017272135145.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0415.061.2017171204527.hdf","time_start":"2000-02-29T04:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077594","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T04:20:00.000Z","id":"G1462768480-LAADS","original_format":"ECHO10","granule_size":"168.791603088379","browse_flag":true,"polygons":[["-41.544995 + 73.875511 -46.098422 103.112939 -27.890547 105.482488 -24.444159 81.801024 + -41.544995 73.875511"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0415.061.2017171204527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0415.061.2017171204527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0415.061.2017171204527.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0415.061.2017272140053.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0420.061.2017171204553.hdf","time_start":"2000-02-29T04:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077595","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T04:25:00.000Z","id":"G1462768484-LAADS","original_format":"ECHO10","granule_size":"163.243346214294","browse_flag":true,"polygons":[["-57.253647 + 59.54765 -63.987651 102.748602 -45.748776 103.707058 -41.485362 73.993183 + -57.253647 59.54765"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0420.061.2017171204553.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0420.061.2017171204553.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0420.061.2017171204553.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0420.061.2017272135945.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0425.061.2017171211058.hdf","time_start":"2000-02-29T04:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079779","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T04:30:00.000Z","id":"G1462769126-LAADS","original_format":"ECHO10","granule_size":"154.566044807434","browse_flag":true,"polygons":[["-68.844442 + 27.770707 -81.569403 112.122929 -63.510875 103.506843 -57.279983 59.883469 + -68.844442 27.770707"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0425.061.2017171211058.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0425.061.2017171211058.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0425.061.2017171211058.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0425.061.2017272134330.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0430.061.2017171205720.hdf","time_start":"2000-02-29T04:30:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079159","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T04:35:00.000Z","id":"G1462768857-LAADS","original_format":"ECHO10","granule_size":"102.030620574951","browse_flag":true,"polygons":[["-68.429892 + -23.40837 -79.898459 -103.219881 -80.953976 113.690073 -69.07077 28.30134 + -68.429892 -23.40837"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0430.061.2017171205720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0430.061.2017171205720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0430.061.2017171205720.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0430.061.2017272133015.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0520.061.2017171205645.hdf","time_start":"2000-02-29T05:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078853","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T05:25:00.000Z","id":"G1462768712-LAADS","original_format":"ECHO10","granule_size":"49.1992073059082","browse_flag":true,"polygons":[["77.944666 + 67.41052 67.688047 138.745951 70.136964 -169.286802 82.850467 -75.062922 77.944666 + 67.41052"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0520.061.2017171205645.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0520.061.2017171205645.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0520.061.2017171205645.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0520.061.2017272133255.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0525.061.2017171210106.hdf","time_start":"2000-02-29T05:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079473","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T05:30:00.000Z","id":"G1462769028-LAADS","original_format":"ECHO10","granule_size":"150.935819625854","browse_flag":true,"polygons":[["60.250441 + 71.68185 54.808606 111.130549 68.058372 138.348802 78.393105 65.2558 60.250441 + 71.68185"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0525.061.2017171210106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0525.061.2017171210106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0525.061.2017171210106.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0525.061.2017272134624.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0530.061.2017171205719.hdf","time_start":"2000-02-29T05:30:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079160","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T05:35:00.000Z","id":"G1462768854-LAADS","original_format":"ECHO10","granule_size":"162.944273948669","browse_flag":true,"polygons":[["42.359106 + 70.6405 38.600502 98.425277 55.088132 110.557553 60.739731 71.112544 42.359106 + 70.6405"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0530.061.2017171205719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0530.061.2017171205719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0530.061.2017171205719.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0530.061.2017272134520.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0535.061.2017171205718.hdf","time_start":"2000-02-29T05:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079161","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T05:40:00.000Z","id":"G1462768851-LAADS","original_format":"ECHO10","granule_size":"162.867884635925","browse_flag":true,"polygons":[["24.539304 + 68.336326 21.431011 91.111811 38.810915 97.926026 42.796261 70.361977 24.539304 + 68.336326"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0535.061.2017171205718.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0535.061.2017171205718.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0535.061.2017171205718.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0535.061.2017272134510.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0540.061.2017171210724.hdf","time_start":"2000-02-29T05:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079162","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T05:45:00.000Z","id":"G1462768859-LAADS","original_format":"ECHO10","granule_size":"144.551376342773","browse_flag":true,"polygons":[["6.768686 + 65.257195 3.790512 86.23893 21.551712 90.898301 24.871577 68.212279 6.768686 + 65.257195"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0540.061.2017171210724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0540.061.2017171210724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0540.061.2017171210724.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0540.061.2017272134053.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0545.061.2017171205716.hdf","time_start":"2000-02-29T05:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079163","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T05:50:00.000Z","id":"G1462768861-LAADS","original_format":"ECHO10","granule_size":"157.483563423157","browse_flag":true,"polygons":[["-10.915284 + 61.220433 -14.08386 82.550725 3.882061 86.136152 6.965811 65.201042 -10.915284 + 61.220433"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0545.061.2017171205716.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0545.061.2017171205716.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0545.061.2017171205716.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0545.061.2017272135510.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0550.061.2017171205733.hdf","time_start":"2000-02-29T05:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078854","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T05:55:00.000Z","id":"G1462768711-LAADS","original_format":"ECHO10","granule_size":"156.269455909729","browse_flag":true,"polygons":[["-28.392356 + 55.607583 -32.11941 79.863765 -13.985231 82.771273 -10.821776 61.228569 -28.392356 + 55.607583"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0550.061.2017171205733.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0550.061.2017171205733.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0550.061.2017171205733.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0550.061.2017272135323.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0555.061.2017171205738.hdf","time_start":"2000-02-29T05:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079474","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T06:00:00.000Z","id":"G1462769031-LAADS","original_format":"ECHO10","granule_size":"152.060231208801","browse_flag":true,"polygons":[["-45.205206 + 46.734109 -50.100231 78.112581 -31.879822 80.281592 -28.304456 55.636671 -45.205206 + 46.734109"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0555.061.2017171205738.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0555.061.2017171205738.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0555.061.2017171205738.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0555.061.2017272135253.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0600.061.2017171210923.hdf","time_start":"2000-02-29T06:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079780","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T06:05:00.000Z","id":"G1462769123-LAADS","original_format":"ECHO10","granule_size":"156.446226119995","browse_flag":true,"polygons":[["-60.383731 + 29.865719 -67.951638 78.49598 -49.719836 78.762891 -45.158629 46.890131 -60.383731 + 29.865719"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0600.061.2017171210923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0600.061.2017171210923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0600.061.2017171210923.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0600.061.2017272135504.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0605.061.2017171205723.hdf","time_start":"2000-02-29T06:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079164","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T06:10:00.000Z","id":"G1462768862-LAADS","original_format":"ECHO10","granule_size":"147.832714080811","browse_flag":true,"polygons":[["-70.097204 + -7.915856 -85.19265 101.490893 -67.449147 79.330135 -60.442842 30.266876 -70.097204 + -7.915856"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0605.061.2017171205723.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0605.061.2017171205723.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0605.061.2017171205723.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0605.061.2017272134106.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0610.061.2017171205733.hdf","time_start":"2000-02-29T06:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079165","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T06:15:00.000Z","id":"G1462768865-LAADS","original_format":"ECHO10","granule_size":"75.6329860687256","browse_flag":true,"polygons":[["-66.407209 + -57.24751 -76.035054 -124.29438 -84.54252 102.076793 -70.382154 -7.473884 + -66.407209 -57.24751"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0610.061.2017171205733.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0610.061.2017171205733.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0610.061.2017171205733.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0610.061.2017272133423.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0700.061.2017171205617.hdf","time_start":"2000-02-29T07:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077596","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T07:05:00.000Z","id":"G1462768481-LAADS","original_format":"ECHO10","granule_size":"78.8257513046265","browse_flag":true,"polygons":[["74.023781 + 44.977368 65.366123 105.644137 71.08525 154.06697 86.17722 -76.230652 74.023781 + 44.977368"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0700.061.2017171205617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0700.061.2017171205617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0700.061.2017171205617.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0700.061.2017272133657.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0705.061.2017171204604.hdf","time_start":"2000-02-29T07:05:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077597","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T07:10:00.000Z","id":"G1462768483-LAADS","original_format":"ECHO10","granule_size":"154.398708343506","browse_flag":true,"polygons":[["56.281833 + 46.905066 51.360473 82.811685 65.715608 105.149725 74.497802 43.518548 56.281833 + 46.905066"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0705.061.2017171204604.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0705.061.2017171204604.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0705.061.2017171204604.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0705.061.2017272135402.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0710.061.2017171204619.hdf","time_start":"2000-02-29T07:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077889","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T07:15:00.000Z","id":"G1462768637-LAADS","original_format":"ECHO10","granule_size":"158.665332794189","browse_flag":true,"polygons":[["38.473555 + 45.499229 34.904328 71.840834 51.614527 82.276572 56.761988 46.455109 38.473555 + 45.499229"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0710.061.2017171204619.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0710.061.2017171204619.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0710.061.2017171204619.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0710.061.2017272134951.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0715.061.2017171204636.hdf","time_start":"2000-02-29T07:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077598","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T07:20:00.000Z","id":"G1462768488-LAADS","original_format":"ECHO10","granule_size":"152.7262134552","browse_flag":true,"polygons":[["20.569027 + 43.015539 17.515439 65.191295 35.090637 71.411953 38.884243 45.272669 20.569027 + 43.015539"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0715.061.2017171204636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0715.061.2017171204636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0715.061.2017171204636.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0715.061.2017272134104.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0720.061.2017171204525.hdf","time_start":"2000-02-29T07:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077890","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T07:25:00.000Z","id":"G1462768649-LAADS","original_format":"ECHO10","granule_size":"146.167352676392","browse_flag":true,"polygons":[["2.817881 + 39.743894 -0.174763 60.604669 17.636575 64.962466 20.869685 42.903253 2.817881 + 39.743894"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0720.061.2017171204525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0720.061.2017171204525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0720.061.2017171204525.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0720.061.2017272134509.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0725.061.2017171204546.hdf","time_start":"2000-02-29T07:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077599","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T07:30:00.000Z","id":"G1462768489-LAADS","original_format":"ECHO10","granule_size":"155.179666519165","browse_flag":true,"polygons":[["-14.849959 + 35.429295 -18.108367 57.159028 -0.095318 60.57708 2.979633 39.701134 -14.849959 + 35.429295"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0725.061.2017171204546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0725.061.2017171204546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0725.061.2017171204546.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0725.061.2017272135302.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0730.061.2017171204606.hdf","time_start":"2000-02-29T07:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077600","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T07:35:00.000Z","id":"G1462768487-LAADS","original_format":"ECHO10","granule_size":"153.912161827087","browse_flag":true,"polygons":[["-32.221619 + 29.293975 -36.138461 54.656803 -17.977979 57.423141 -14.759075 35.443871 -32.221619 + 29.293975"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0730.061.2017171204606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0730.061.2017171204606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0730.061.2017171204606.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0730.061.2017272135102.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0735.061.2017171204547.hdf","time_start":"2000-02-29T07:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077601","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T07:40:00.000Z","id":"G1462768490-LAADS","original_format":"ECHO10","granule_size":"154.873706817627","browse_flag":true,"polygons":[["-48.793229 + 19.231037 -54.096092 53.193823 -35.865699 55.121361 -32.135082 29.32664 -48.793229 + 19.231037"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0735.061.2017171204547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0735.061.2017171204547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0735.061.2017171204547.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0735.061.2017272135953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0740.061.2017171205505.hdf","time_start":"2000-02-29T07:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077891","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T07:45:00.000Z","id":"G1462768644-LAADS","original_format":"ECHO10","granule_size":"156.907556533813","browse_flag":true,"polygons":[["-63.278544 + -0.851465 -71.906938 54.50907 -53.686573 53.80601 -48.762891 19.431888 -63.278544 + -0.851465"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0740.061.2017171205505.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0740.061.2017171205505.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0740.061.2017171205505.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0740.061.2017272135844.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0745.061.2017171204717.hdf","time_start":"2000-02-29T07:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077602","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T07:50:00.000Z","id":"G1462768491-LAADS","original_format":"ECHO10","granule_size":"144.566896438599","browse_flag":true,"polygons":[["-70.598041 + -44.57436 -87.414028 131.686213 -71.374319 55.631401 -63.374117 -0.374799 + -70.598041 -44.57436"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0745.061.2017171204717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0745.061.2017171204717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0745.061.2017171204717.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0745.061.2017272133930.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0750.061.2017171204633.hdf","time_start":"2000-02-29T07:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077603","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T07:55:00.000Z","id":"G1462768498-LAADS","original_format":"ECHO10","granule_size":"49.0442781448364","browse_flag":true,"polygons":[["-63.925138 + -89.578991 -72.119229 -147.374832 -86.935156 122.19785 -70.933003 -44.31275 + -63.925138 -89.578991"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0750.061.2017171204633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0750.061.2017171204633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0750.061.2017171204633.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0750.061.2017272133527.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0840.061.2017171204749.hdf","time_start":"2000-02-29T08:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077604","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T08:45:00.000Z","id":"G1462768495-LAADS","original_format":"ECHO10","granule_size":"113.49374294281","browse_flag":true,"polygons":[["70.07743 + 21.408235 62.646387 74.019911 71.20327 116.749494 86.870405 -32.463017 70.07743 + 21.408235"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0840.061.2017171204749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0840.061.2017171204749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0840.061.2017171204749.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0840.061.2017272134205.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0845.061.2017171205458.hdf","time_start":"2000-02-29T08:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077892","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T08:50:00.000Z","id":"G1462768648-LAADS","original_format":"ECHO10","granule_size":"161.828772544861","browse_flag":true,"polygons":[["52.309098 + 22.001917 47.804866 55.026605 62.971026 73.4815 70.563336 20.340641 52.309098 + 22.001917"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0845.061.2017171205458.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0845.061.2017171205458.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0845.061.2017171205458.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0845.061.2017272135201.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0850.061.2017171204737.hdf","time_start":"2000-02-29T08:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077605","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T08:55:00.000Z","id":"G1462768493-LAADS","original_format":"ECHO10","granule_size":"160.715299606323","browse_flag":true,"polygons":[["34.495735 + 20.274598 31.088898 45.395395 48.041884 54.513556 52.777416 21.600121 34.495735 + 20.274598"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0850.061.2017171204737.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0850.061.2017171204737.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0850.061.2017171204737.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0850.061.2017272134959.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0855.061.2017171204621.hdf","time_start":"2000-02-29T08:55:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077606","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T09:00:00.000Z","id":"G1462768497-LAADS","original_format":"ECHO10","granule_size":"157.383891105652","browse_flag":true,"polygons":[["16.688495 + 17.637172 13.672714 39.361971 31.255898 45.023288 34.883943 20.092803 16.688495 + 17.637172"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0855.061.2017171204621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0855.061.2017171204621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0855.061.2017171204621.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0855.061.2017272133803.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0900.061.2017171204716.hdf","time_start":"2000-02-29T09:00:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077893","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T09:05:00.000Z","id":"G1462768643-LAADS","original_format":"ECHO10","granule_size":"157.752531051636","browse_flag":true,"polygons":[["-1.132911 + 14.165403 -4.14583 34.985765 13.795482 39.107233 16.963327 17.550646 -1.132911 + 14.165403"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0900.061.2017171204716.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0900.061.2017171204716.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0900.061.2017171204716.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0900.061.2017272134213.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0905.061.2017171210105.hdf","time_start":"2000-02-29T09:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078207","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T09:10:00.000Z","id":"G1462768680-LAADS","original_format":"ECHO10","granule_size":"166.424265861511","browse_flag":true,"polygons":[["-18.766062 + 9.524501 -22.132301 31.797031 -4.080946 35.060475 -0.993914 14.124796 -18.766062 + 9.524501"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0905.061.2017171210105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0905.061.2017171210105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0905.061.2017171210105.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0905.061.2017272135308.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0910.061.2017171204643.hdf","time_start":"2000-02-29T09:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077607","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T09:15:00.000Z","id":"G1462768505-LAADS","original_format":"ECHO10","granule_size":"161.807249069214","browse_flag":true,"polygons":[["-36.011705 + 2.773009 -40.154998 29.496304 -21.974256 32.114037 -18.675404 9.549274 -36.011705 + 2.773009"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0910.061.2017171204643.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0910.061.2017171204643.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0910.061.2017171204643.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0910.061.2017272135027.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0915.061.2017171204732.hdf","time_start":"2000-02-29T09:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077608","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T09:20:00.000Z","id":"G1462768492-LAADS","original_format":"ECHO10","granule_size":"165.286605834961","browse_flag":true,"polygons":[["-52.293619 + -8.728568 -58.08902 28.387122 -39.851952 30.00834 -35.934965 2.840267 -52.293619 + -8.728568"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0915.061.2017171204732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0915.061.2017171204732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0915.061.2017171204732.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0915.061.2017272140226.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0920.061.2017171205739.hdf","time_start":"2000-02-29T09:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079166","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T09:25:00.000Z","id":"G1462768863-LAADS","original_format":"ECHO10","granule_size":"159.553665161133","browse_flag":true,"polygons":[["-65.856546 + -32.852896 -75.841689 31.462044 -57.651888 29.039987 -52.283519 -8.47582 -65.856546 + -32.852896"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0920.061.2017171205739.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0920.061.2017171205739.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0920.061.2017171205739.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0920.061.2017272140015.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0925.061.2017171211104.hdf","time_start":"2000-02-29T09:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080135","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T09:30:00.000Z","id":"G1462769161-LAADS","original_format":"ECHO10","granule_size":"137.655248641968","browse_flag":true,"polygons":[["-70.285868 + -81.359845 -85.333846 164.656268 -75.278044 32.809867 -65.99956 -32.323438 + -70.285868 -81.359845"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0925.061.2017171211104.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0925.061.2017171211104.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0925.061.2017171211104.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0925.061.2017272134136.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.0930.061.2017171205725.hdf","time_start":"2000-02-29T09:30:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078855","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T09:35:00.000Z","id":"G1462768710-LAADS","original_format":"ECHO10","granule_size":"26.3748092651367","browse_flag":true,"polygons":[["-61.096749 + -120.588268 -68.187048 -171.129931 -85.513877 156.808291 -70.654881 -81.337623 + -61.096749 -120.588268"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0930.061.2017171205725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.0930.061.2017171205725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.0930.061.2017171205725.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.0930.061.2017272133606.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1015.061.2017171205711.hdf","time_start":"2000-02-29T10:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078534","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T10:20:00.000Z","id":"G1462768682-LAADS","original_format":"ECHO10","granule_size":"19.5428457260132","browse_flag":true,"polygons":[["83.610883 + -16.54806 70.11571 79.919982 67.459465 131.514951 77.219657 -158.825838 83.610883 + -16.54806"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1015.061.2017171205711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1015.061.2017171205711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1015.061.2017171205711.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1015.061.2017272133617.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1020.061.2017171205732.hdf","time_start":"2000-02-29T10:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079167","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T10:25:00.000Z","id":"G1462768864-LAADS","original_format":"ECHO10","granule_size":"148.96436214447","browse_flag":true,"polygons":[["66.118495 + -2.743876 59.632876 43.632527 70.472768 79.817991 83.940966 -21.642072 66.118495 + -2.743876"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1020.061.2017171205732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1020.061.2017171205732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1020.061.2017171205732.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1020.061.2017272134903.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1025.061.2017171205801.hdf","time_start":"2000-02-29T10:25:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079168","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T10:30:00.000Z","id":"G1462768867-LAADS","original_format":"ECHO10","granule_size":"160.85693359375","browse_flag":true,"polygons":[["48.332831 + -2.996153 44.169045 27.654224 59.938126 43.069395 66.608426 -3.564253 48.332831 + -2.996153"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1025.061.2017171205801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1025.061.2017171205801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1025.061.2017171205801.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1025.061.2017272135915.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1030.061.2017171205754.hdf","time_start":"2000-02-29T10:30:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079475","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T10:35:00.000Z","id":"G1462769034-LAADS","original_format":"ECHO10","granule_size":"153.616414070129","browse_flag":true,"polygons":[["30.516135 + -4.952783 27.241463 19.11285 44.388344 27.171337 48.787953 -3.309788 30.516135 + -4.952783"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1030.061.2017171205754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1030.061.2017171205754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1030.061.2017171205754.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1030.061.2017272134840.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1035.061.2017171205739.hdf","time_start":"2000-02-29T10:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079169","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T10:40:00.000Z","id":"G1462768860-LAADS","original_format":"ECHO10","granule_size":"157.94727897644","browse_flag":true,"polygons":[["12.719195 + -7.776765 9.732488 13.555849 27.397533 18.766746 30.880482 -5.119094 12.719195 + -7.776765"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1035.061.2017171205739.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1035.061.2017171205739.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1035.061.2017171205739.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1035.061.2017272133741.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1040.061.2017171205835.hdf","time_start":"2000-02-29T10:40:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079476","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T10:45:00.000Z","id":"G1462769030-LAADS","original_format":"ECHO10","granule_size":"151.204118728638","browse_flag":true,"polygons":[["-4.97987 + -11.45406 -8.045241 9.495168 9.8406 13.36843 12.962747 -7.859091 -4.97987 + -11.45406"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1040.061.2017171205835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1040.061.2017171205835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1040.061.2017171205835.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1040.061.2017272134917.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1045.061.2017171205758.hdf","time_start":"2000-02-29T10:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079170","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T10:50:00.000Z","id":"G1462768866-LAADS","original_format":"ECHO10","granule_size":"148.094035148621","browse_flag":true,"polygons":[["-22.666271 + -16.465211 -26.163096 6.49139 -7.986005 9.628958 -4.878861 -11.47594 -22.666271 + -16.465211"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1045.061.2017171205758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1045.061.2017171205758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1045.061.2017171205758.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1045.061.2017272135000.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1050.061.2017171205813.hdf","time_start":"2000-02-29T10:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079171","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T10:55:00.000Z","id":"G1462768870-LAADS","original_format":"ECHO10","granule_size":"164.812195777893","browse_flag":true,"polygons":[["-39.761179 + -23.9575 -44.170842 4.388395 -25.970751 6.84429 -22.577528 -16.438438 -39.761179 + -23.9575"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1050.061.2017171205813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1050.061.2017171205813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1050.061.2017171205813.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1050.061.2017272140208.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1055.061.2017171205818.hdf","time_start":"2000-02-29T10:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079477","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T11:00:00.000Z","id":"G1462769036-LAADS","original_format":"ECHO10","granule_size":"163.952116012573","browse_flag":true,"polygons":[["-55.677617 + -37.263644 -62.075356 3.739296 -43.835733 4.951998 -39.694684 -23.858395 -55.677617 + -37.263644"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1055.061.2017171205818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1055.061.2017171205818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1055.061.2017171205818.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1055.061.2017272140912.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1100.061.2017171205747.hdf","time_start":"2000-02-29T11:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079172","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T11:05:00.000Z","id":"G1462768869-LAADS","original_format":"ECHO10","granule_size":"158.736802101135","browse_flag":true,"polygons":[["-68.004086 + -66.344795 -79.729771 10.267128 -61.610697 4.482572 -55.692306 -36.952553 + -68.004086 -66.344795"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1100.061.2017171205747.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1100.061.2017171205747.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1100.061.2017171205747.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1100.061.2017272140349.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1105.061.2017171205741.hdf","time_start":"2000-02-29T11:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079173","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T11:10:00.000Z","id":"G1462768872-LAADS","original_format":"ECHO10","granule_size":"117.19685459137","browse_flag":true,"polygons":[["-69.21179 + -117.371687 -81.726157 154.796957 -79.135336 11.757341 -68.218133 -65.787904 + -69.21179 -117.371687"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1105.061.2017171205741.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1105.061.2017171205741.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1105.061.2017171205741.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1105.061.2017272133904.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1155.061.2017171205745.hdf","time_start":"2000-02-29T11:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079174","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T12:00:00.000Z","id":"G1462768871-LAADS","original_format":"ECHO10","granule_size":"44.0198564529419","browse_flag":true,"polygons":[["79.813899 + -33.125765 68.630475 44.435531 69.426852 97.076071 81.076126 -178.734946 79.813899 + -33.125765"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1155.061.2017171205745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1155.061.2017171205745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1155.061.2017171205745.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1155.061.2017272133730.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1200.061.2017171205820.hdf","time_start":"2000-02-29T12:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079175","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T12:05:00.000Z","id":"G1462768877-LAADS","original_format":"ECHO10","granule_size":"159.87296962738","browse_flag":true,"polygons":[["62.154437 + -27.23237 56.404193 14.225025 68.984086 44.145963 80.228321 -36.041465 62.154437 + -27.23237"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1200.061.2017171205820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1200.061.2017171205820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1200.061.2017171205820.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1200.061.2017272135506.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1205.061.2017171205813.hdf","time_start":"2000-02-29T12:05:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079478","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T12:10:00.000Z","id":"G1462769033-LAADS","original_format":"ECHO10","granule_size":"165.291359901428","browse_flag":true,"polygons":[["44.353744 + -28.065534 40.466574 0.617073 56.690005 13.659546 62.639729 -27.880984 44.353744 + -28.065534"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1205.061.2017171205813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1205.061.2017171205813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1205.061.2017171205813.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1205.061.2017272140710.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1210.061.2017171205821.hdf","time_start":"2000-02-29T12:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079176","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T12:15:00.000Z","id":"G1462768875-LAADS","original_format":"ECHO10","granule_size":"152.890674591064","browse_flag":true,"polygons":[["26.534951 + -30.251883 23.367685 -7.045512 40.673255 0.149591 44.794213 -28.346475 26.534951 + -30.251883"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1210.061.2017171205821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1210.061.2017171205821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1210.061.2017171205821.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1210.061.2017272135601.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1215.061.2017171204715.hdf","time_start":"2000-02-29T12:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077894","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T12:20:00.000Z","id":"G1462768642-LAADS","original_format":"ECHO10","granule_size":"137.188761711121","browse_flag":true,"polygons":[["8.751471 + -33.241807 5.776208 -12.173913 23.508478 -7.344452 26.877189 -30.385314 8.751471 + -33.241807"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1215.061.2017171204715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1215.061.2017171204715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1215.061.2017171204715.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1215.061.2017272135722.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1220.061.2017171205820.hdf","time_start":"2000-02-29T12:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079177","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T12:25:00.000Z","id":"G1462768873-LAADS","original_format":"ECHO10","granule_size":"151.142534255981","browse_flag":true,"polygons":[["-8.94033 + -37.141175 -12.067585 -15.987482 5.873611 -12.309977 8.9638 -33.293929 -8.94033 + -37.141175"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1220.061.2017171205820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1220.061.2017171205820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1220.061.2017171205820.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1220.061.2017272135315.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1225.061.2017171210900.hdf","time_start":"2000-02-29T12:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079479","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T12:30:00.000Z","id":"G1462769038-LAADS","original_format":"ECHO10","granule_size":"151.977924346924","browse_flag":true,"polygons":[["-26.461747 + -42.537117 -30.104823 -18.768849 -11.983637 -15.789136 -8.844302 -37.151178 + -26.461747 -42.537117"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1225.061.2017171210900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1225.061.2017171210900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1225.061.2017171210900.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1225.061.2017272135302.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1230.061.2017171205825.hdf","time_start":"2000-02-29T12:30:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079480","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T12:35:00.000Z","id":"G1462769037-LAADS","original_format":"ECHO10","granule_size":"158.584136962891","browse_flag":true,"polygons":[["-43.461221 + -50.951676 -48.185508 -20.65575 -29.880921 -18.366943 -26.373447 -42.509481 + -43.461221 -50.951676"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1230.061.2017171205825.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1230.061.2017171205825.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1230.061.2017171205825.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1230.061.2017272140002.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1235.061.2017171205910.hdf","time_start":"2000-02-29T12:35:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079481","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T12:40:00.000Z","id":"G1462769047-LAADS","original_format":"ECHO10","granule_size":"164.731905937195","browse_flag":true,"polygons":[["-58.909545 + -66.534518 -66.055414 -20.675716 -47.818325 -20.03646 -43.406452 -50.817861 + -58.909545 -66.534518"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1235.061.2017171205910.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1235.061.2017171205910.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1235.061.2017171205910.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1235.061.2017272140529.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1240.061.2017171205815.hdf","time_start":"2000-02-29T12:40:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079482","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T12:45:00.000Z","id":"G1462769044-LAADS","original_format":"ECHO10","granule_size":"154.242873191833","browse_flag":true,"polygons":[["-69.586325 + -101.394327 -83.503006 -6.048973 -65.563449 -19.825995 -58.954381 -66.160415 + -69.586325 -101.394327"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1240.061.2017171205815.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1240.061.2017171205815.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1240.061.2017171205815.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1240.061.2017272135546.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1245.061.2017171205811.hdf","time_start":"2000-02-29T12:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079178","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T12:50:00.000Z","id":"G1462768879-LAADS","original_format":"ECHO10","granule_size":"90.4374418258667","browse_flag":true,"polygons":[["-67.439094 + -151.967697 -77.893248 135.482509 -82.879461 -4.911268 -69.84222 -100.906264 + -67.439094 -151.967697"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1245.061.2017171205811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1245.061.2017171205811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1245.061.2017171205811.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1245.061.2017272133738.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1335.061.2017171205806.hdf","time_start":"2000-02-29T13:35:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079483","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T13:40:00.000Z","id":"G1462769048-LAADS","original_format":"ECHO10","granule_size":"73.4176139831543","browse_flag":true,"polygons":[["75.907854 + -54.629766 66.529952 10.568774 70.727172 61.01655 84.722129 169.492075 75.907854 + -54.629766"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1335.061.2017171205806.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1335.061.2017171205806.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1335.061.2017171205806.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1335.061.2017272133908.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1340.061.2017171205828.hdf","time_start":"2000-02-29T13:40:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079484","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T13:45:00.000Z","id":"G1462769039-LAADS","original_format":"ECHO10","granule_size":"154.094150543213","browse_flag":true,"polygons":[["58.181888 + -51.936527 53.017648 -14.417733 66.884921 10.124214 76.360125 -56.532689 58.181888 + -51.936527"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1340.061.2017171205828.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1340.061.2017171205828.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1340.061.2017171205828.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1340.061.2017272135718.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1345.061.2017171205837.hdf","time_start":"2000-02-29T13:45:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079179","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T13:50:00.000Z","id":"G1462768874-LAADS","original_format":"ECHO10","granule_size":"160.353506088257","browse_flag":true,"polygons":[["40.372153 + -53.194104 36.709847 -26.14809 53.282168 -14.965443 58.661295 -52.459044 40.372153 + -53.194104"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1345.061.2017171205837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1345.061.2017171205837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1345.061.2017171205837.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1345.061.2017272140926.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1350.061.2017171205840.hdf","time_start":"2000-02-29T13:50:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079180","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T13:55:00.000Z","id":"G1462768881-LAADS","original_format":"ECHO10","granule_size":"159.138947486877","browse_flag":true,"polygons":[["22.555621 + -55.573299 19.46392 -33.061569 36.898235 -26.571442 40.791916 -53.432372 22.555621 + -55.573299"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1350.061.2017171205840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1350.061.2017171205840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1350.061.2017171205840.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1350.061.2017272140234.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1355.061.2017171205845.hdf","time_start":"2000-02-29T13:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079485","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T14:00:00.000Z","id":"G1462769040-LAADS","original_format":"ECHO10","granule_size":"150.861246109009","browse_flag":true,"polygons":[["4.787549 + -58.739394 1.806703 -37.836508 19.59546 -33.333327 22.868907 -55.681633 4.787549 + -58.739394"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1355.061.2017171205845.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1355.061.2017171205845.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1355.061.2017171205845.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1355.061.2017272135717.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1400.061.2017171211003.hdf","time_start":"2000-02-29T14:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079781","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T14:05:00.000Z","id":"G1462769142-LAADS","original_format":"ECHO10","granule_size":"169.412722587585","browse_flag":true,"polygons":[["-12.88914 + -62.913035 -16.097805 -41.418257 1.894222 -37.916877 4.9687 -58.789486 -12.88914 + -62.913035"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1400.061.2017171211003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1400.061.2017171211003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1400.061.2017171211003.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1400.061.2017272135717.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1405.061.2017171205903.hdf","time_start":"2000-02-29T14:05:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079486","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T14:10:00.000Z","id":"G1462769041-LAADS","original_format":"ECHO10","granule_size":"167.925751686096","browse_flag":true,"polygons":[["-30.318842 + -68.76774 -34.132075 -43.997776 -15.985343 -41.159699 -12.797059 -62.891733 + -30.318842 -68.76774"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1405.061.2017171205903.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1405.061.2017171205903.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1405.061.2017171205903.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1405.061.2017272135403.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1410.061.2017171210342.hdf","time_start":"2000-02-29T14:10:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079782","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T14:15:00.000Z","id":"G1462769139-LAADS","original_format":"ECHO10","granule_size":"133.528725624084","browse_flag":true,"polygons":[["-47.026972 + -78.184152 -52.107505 -45.614277 -33.878064 -43.556862 -30.239203 -68.718763 + -47.026972 -78.184152"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1410.061.2017171210342.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1410.061.2017171210342.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1410.061.2017171210342.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1410.061.2017272134054.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1415.061.2017171210611.hdf","time_start":"2000-02-29T14:15:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080136","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T14:20:00.000Z","id":"G1462769154-LAADS","original_format":"ECHO10","granule_size":"160.970377922058","browse_flag":true,"polygons":[["-61.936468 + -96.735609 -70.024888 -44.716096 -51.709474 -44.922599 -46.977693 -78.037969 + -61.936468 -96.735609"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1415.061.2017171210611.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1415.061.2017171210611.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1415.061.2017171210611.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1415.061.2017272135610.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1420.061.2017171205907.hdf","time_start":"2000-02-29T14:20:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079487","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T14:25:00.000Z","id":"G1462769045-LAADS","original_format":"ECHO10","granule_size":"151.122591972351","browse_flag":true,"polygons":[["-70.462097 + -137.708167 -86.740789 -2.194054 -69.506228 -43.790216 -62.01638 -96.300001 + -70.462097 -137.708167"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1420.061.2017171205907.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1420.061.2017171205907.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1420.061.2017171205907.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1420.061.2017272135127.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1425.061.2017171205841.hdf","time_start":"2000-02-29T14:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079181","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T14:30:00.000Z","id":"G1462768876-LAADS","original_format":"ECHO10","granule_size":"64.2250652313232","browse_flag":true,"polygons":[["-65.15412 + 174.976694 -73.991478 113.248145 -86.135701 -5.170825 -70.771091 -137.355148 + -65.15412 174.976694"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1425.061.2017171205841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1425.061.2017171205841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1425.061.2017171205841.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1425.061.2017272133724.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1515.061.2017171205859.hdf","time_start":"2000-02-29T15:15:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079182","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T15:20:00.000Z","id":"G1462768878-LAADS","original_format":"ECHO10","granule_size":"96.6548414230347","browse_flag":true,"polygons":[["71.965175 + -77.896497 63.986041 -21.735435 71.25167 23.897758 87.158558 -167.809954 71.965175 + -77.896497"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1515.061.2017171205859.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1515.061.2017171205859.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1515.061.2017171205859.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1515.061.2017272133937.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1520.061.2017171205910.hdf","time_start":"2000-02-29T15:20:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079488","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T15:25:00.000Z","id":"G1462769049-LAADS","original_format":"ECHO10","granule_size":"158.401717185974","browse_flag":true,"polygons":[["54.207703 + -76.782519 49.514224 -42.452981 64.323291 -22.258976 72.44471 -79.158055 54.207703 + -76.782519"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1520.061.2017171205910.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1520.061.2017171205910.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1520.061.2017171205910.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1520.061.2017272135901.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1525.061.2017171205915.hdf","time_start":"2000-02-29T15:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079489","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T15:30:00.000Z","id":"G1462769042-LAADS","original_format":"ECHO10","granule_size":"167.307720184326","browse_flag":true,"polygons":[["36.394539 + -78.372836 32.914831 -52.688431 49.759432 -42.977357 54.679611 -77.216951 + 36.394539 -78.372836"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1525.061.2017171205915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1525.061.2017171205915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1525.061.2017171205915.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1525.061.2017272140303.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1530.061.2017171205853.hdf","time_start":"2000-02-29T15:30:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079490","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T15:35:00.000Z","id":"G1462769043-LAADS","original_format":"ECHO10","granule_size":"139.292452812195","browse_flag":true,"polygons":[["18.583112 + -80.933049 15.548595 -58.984171 33.089119 -53.079312 36.793326 -78.576897 + 18.583112 -80.933049"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1530.061.2017171205853.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1530.061.2017171205853.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1530.061.2017171205853.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1530.061.2017272135058.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1535.061.2017171205900.hdf","time_start":"2000-02-29T15:35:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079491","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T15:40:00.000Z","id":"G1462769046-LAADS","original_format":"ECHO10","granule_size":"158.348941802979","browse_flag":true,"polygons":[["0.838378 + -84.293174 -2.164713 -63.443968 15.669824 -59.221656 18.868693 -81.028321 + 0.838378 -84.293174"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1535.061.2017171205900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1535.061.2017171205900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1535.061.2017171205900.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1535.061.2017272135538.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1540.061.2017171205855.hdf","time_start":"2000-02-29T15:40:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079492","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T15:45:00.000Z","id":"G1462769050-LAADS","original_format":"ECHO10","granule_size":"165.208285331726","browse_flag":true,"polygons":[["-16.8153 + -88.762847 -20.117309 -66.854338 -2.079728 -63.509802 0.987935 -84.331572 + -16.8153 -88.762847"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1540.061.2017171205855.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1540.061.2017171205855.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1540.061.2017171205855.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1540.061.2017272140055.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1545.061.2017171205905.hdf","time_start":"2000-02-29T15:45:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079493","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T15:50:00.000Z","id":"G1462769051-LAADS","original_format":"ECHO10","granule_size":"164.357787132263","browse_flag":true,"polygons":[["-34.128282 + -95.190457 -38.144399 -69.188907 -19.980377 -66.495526 -16.717533 -88.737396 + -34.128282 -95.190457"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1545.061.2017171205905.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1545.061.2017171205905.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1545.061.2017171205905.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1545.061.2017272140125.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1550.061.2017171210140.hdf","time_start":"2000-02-29T15:50:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080137","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T15:55:00.000Z","id":"G1462769160-LAADS","original_format":"ECHO10","granule_size":"165.137534141541","browse_flag":true,"polygons":[["-50.564837 + -105.93168 -56.098407 -70.474251 -37.864988 -68.69028 -34.046057 -95.136741 + -50.564837 -105.93168"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1550.061.2017171210140.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1550.061.2017171210140.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1550.061.2017171210140.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1550.061.2017272140340.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1555.061.2017171210010.hdf","time_start":"2000-02-29T15:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079783","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T16:00:00.000Z","id":"G1462769131-LAADS","original_format":"ECHO10","granule_size":"161.92902469635","browse_flag":true,"polygons":[["-64.622145 + -127.932651 -73.879537 -68.238948 -55.675015 -69.763317 -50.544058 -105.7069 + -64.622145 -127.932651"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1555.061.2017171210010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1555.061.2017171210010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1555.061.2017171210010.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1555.061.2017272140353.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1600.061.2017171205924.hdf","time_start":"2000-02-29T16:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079784","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T16:05:00.000Z","id":"G1462769128-LAADS","original_format":"ECHO10","granule_size":"151.220326423645","browse_flag":true,"polygons":[["-70.537803 + -174.553256 -86.732912 47.457296 -73.33602 -67.151191 -64.742274 -127.43763 + -70.537803 -174.553256"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1600.061.2017171205924.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1600.061.2017171205924.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1600.061.2017171205924.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1600.061.2017272134405.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1605.061.2017171205843.hdf","time_start":"2000-02-29T16:05:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079494","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T16:10:00.000Z","id":"G1462769052-LAADS","original_format":"ECHO10","granule_size":"37.0530376434326","browse_flag":true,"polygons":[["-62.479147 + 143.367222 -70.067385 89.758599 -86.717687 36.338552 -70.890896 -174.411038 + -62.479147 143.367222"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1605.061.2017171205843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1605.061.2017171205843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1605.061.2017171205843.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1605.061.2017272133559.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1655.061.2017171205937.hdf","time_start":"2000-02-29T16:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079495","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T17:00:00.000Z","id":"G1462769053-LAADS","original_format":"ECHO10","granule_size":"126.380321502686","browse_flag":true,"polygons":[["68.015477 + -101.862809 61.106775 -52.673608 70.923264 -13.331661 85.540829 -131.735426 + 68.015477 -101.862809"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1655.061.2017171205937.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1655.061.2017171205937.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1655.061.2017171205937.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1655.061.2017272134402.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1700.061.2017171205930.hdf","time_start":"2000-02-29T17:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079496","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T17:05:00.000Z","id":"G1462769057-LAADS","original_format":"ECHO10","granule_size":"158.317148208618","browse_flag":true,"polygons":[["50.238777 + -101.734716 45.921604 -70.007939 61.423076 -53.230908 68.505602 -102.767742 + 50.238777 -101.734716"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1700.061.2017171205930.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1700.061.2017171205930.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1700.061.2017171205930.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1700.061.2017272135345.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1705.061.2017171205934.hdf","time_start":"2000-02-29T17:05:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079497","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T17:10:00.000Z","id":"G1462769058-LAADS","original_format":"ECHO10","granule_size":"160.749314308167","browse_flag":true,"polygons":[["32.422147 + -103.572124 29.09085 -79.049109 46.150776 -70.512526 50.699583 -102.068126 + 32.422147 -103.572124"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1705.061.2017171205934.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1705.061.2017171205934.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1705.061.2017171205934.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1705.061.2017272135143.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1710.061.2017171205941.hdf","time_start":"2000-02-29T17:10:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079498","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T17:15:00.000Z","id":"G1462769054-LAADS","original_format":"ECHO10","granule_size":"149.064065933228","browse_flag":true,"polygons":[["14.621933 + -106.332218 11.622356 -84.818608 29.250784 -79.402051 32.797061 -103.772981 + 14.621933 -106.332218"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1710.061.2017171205941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1710.061.2017171205941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1710.061.2017171205941.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1710.061.2017272135105.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1715.061.2017171205927.hdf","time_start":"2000-02-29T17:15:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079785","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T17:20:00.000Z","id":"G1462769129-LAADS","original_format":"ECHO10","granule_size":"143.456935882568","browse_flag":true,"polygons":[["-3.096415 + -109.895266 -6.136521 -89.00209 11.734963 -85.023944 14.87678 -106.411778 + -3.096415 -109.895266"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1715.061.2017171205927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1715.061.2017171205927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1715.061.2017171205927.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1715.061.2017272134449.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1720.061.2017171204709.hdf","time_start":"2000-02-29T17:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077895","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T17:25:00.000Z","id":"G1462768647-LAADS","original_format":"ECHO10","granule_size":"159.05920124054","browse_flag":true,"polygons":[["-20.717744 + -114.699225 -24.144693 -92.104695 -6.072088 -88.915874 -2.979623 -109.920916 + -20.717744 -114.699225"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1720.061.2017171204709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1720.061.2017171204709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1720.061.2017171204709.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1720.061.2017272135739.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1725.061.2017171204840.hdf","time_start":"2000-02-29T17:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077896","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T17:30:00.000Z","id":"G1462768652-LAADS","original_format":"ECHO10","granule_size":"154.109605789185","browse_flag":true,"polygons":[["-37.892805 + -121.802954 -42.160994 -94.312539 -23.968738 -91.774236 -20.628387 -114.67373 + -37.892805 -121.802954"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1725.061.2017171204840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1725.061.2017171204840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1725.061.2017171204840.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1725.061.2017272135631.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1730.061.2017171204701.hdf","time_start":"2000-02-29T17:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077897","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T17:35:00.000Z","id":"G1462768646-LAADS","original_format":"ECHO10","granule_size":"164.058613777161","browse_flag":true,"polygons":[["-54.004624 + -134.153281 -60.08116 -95.204134 -41.841695 -93.773355 -37.821061 -121.720627 + -54.004624 -134.153281"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1730.061.2017171204701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1730.061.2017171204701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1730.061.2017171204701.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1730.061.2017272140709.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1735.061.2017171204715.hdf","time_start":"2000-02-29T17:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077898","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T17:40:00.000Z","id":"G1462768650-LAADS","original_format":"ECHO10","granule_size":"162.579779624939","browse_flag":true,"polygons":[["-66.996953 + -160.643261 -77.786603 -90.536857 -59.628779 -94.439003 -54.006104 -133.873666 + -66.996953 -160.643261"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1735.061.2017171204715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1735.061.2017171204715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1735.061.2017171204715.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1735.061.2017272140503.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1740.061.2017171204607.hdf","time_start":"2000-02-29T17:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077899","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T17:45:00.000Z","id":"G1462768651-LAADS","original_format":"ECHO10","granule_size":"138.786192893982","browse_flag":true,"polygons":[["-69.83696 + 149.249943 -83.5914 50.808324 -77.218209 -89.370969 -67.167392 -160.110567 + -69.83696 149.249943"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1740.061.2017171204607.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1740.061.2017171204607.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1740.061.2017171204607.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1740.061.2017272134359.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1830.061.2017171205927.hdf","time_start":"2000-02-29T18:30:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079499","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T18:35:00.000Z","id":"G1462769055-LAADS","original_format":"ECHO10","granule_size":"30.897536277771","browse_flag":true,"polygons":[["81.739979 + -135.263673 69.451225 -49.212403 68.499332 3.271509 79.145243 79.602994 81.739979 + -135.263673"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1830.061.2017171205927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1830.061.2017171205927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1830.061.2017171205927.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1830.061.2017272133813.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1835.061.2017171205923.hdf","time_start":"2000-02-29T18:35:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079786","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T18:40:00.000Z","id":"G1462769137-LAADS","original_format":"ECHO10","granule_size":"144.013803482056","browse_flag":true,"polygons":[["64.055786 + -126.182526 57.986336 -82.5342 69.830827 -49.443454 82.133005 -138.841218 + 64.055786 -126.182526"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1835.061.2017171205923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1835.061.2017171205923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1835.061.2017171205923.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1835.061.2017272134949.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1840.061.2017171211126.hdf","time_start":"2000-02-29T18:40:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080138","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T18:45:00.000Z","id":"G1462769162-LAADS","original_format":"ECHO10","granule_size":"162.639234542847","browse_flag":true,"polygons":[["46.268602 + -126.784091 42.254275 -97.189928 58.274178 -83.07942 64.547695 -126.934959 + 46.268602 -126.784091"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1840.061.2017171211126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1840.061.2017171211126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1840.061.2017171211126.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1840.061.2017272134802.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1845.061.2017171205942.hdf","time_start":"2000-02-29T18:45:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079787","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T18:50:00.000Z","id":"G1462769134-LAADS","original_format":"ECHO10","granule_size":"164.801842689514","browse_flag":true,"polygons":[["28.4495 + -128.864652 25.23542 -105.259487 42.46901 -97.67232 46.71505 -127.084341 28.4495 + -128.864652"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1845.061.2017171205942.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1845.061.2017171205942.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1845.061.2017171205942.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1845.061.2017272135432.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1850.061.2017171205946.hdf","time_start":"2000-02-29T18:50:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079788","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T18:55:00.000Z","id":"G1462769132-LAADS","original_format":"ECHO10","granule_size":"158.171709060669","browse_flag":true,"polygons":[["10.654101 + -131.769986 7.686005 -110.616853 25.390451 -105.614708 28.807385 -129.008739 + 10.654101 -131.769986"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1850.061.2017171205946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1850.061.2017171205946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1850.061.2017171205946.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1850.061.2017272135952.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1855.061.2017171210011.hdf","time_start":"2000-02-29T18:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079789","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T19:00:00.000Z","id":"G1462769133-LAADS","original_format":"ECHO10","granule_size":"155.414786338806","browse_flag":true,"polygons":[["-7.037473 + -135.556854 -10.131787 -114.515318 7.78357 -110.747863 10.885313 -131.835052 + -7.037473 -135.556854"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1855.061.2017171210011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1855.061.2017171210011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1855.061.2017171210011.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1855.061.2017272135619.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1900.061.2017171205952.hdf","time_start":"2000-02-29T19:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079790","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T19:05:00.000Z","id":"G1462769138-LAADS","original_format":"ECHO10","granule_size":"154.056562423706","browse_flag":true,"polygons":[["-24.600576 + -140.743028 -28.166937 -117.397037 -10.060626 -114.350427 -6.93967 -135.568421 + -24.600576 -140.743028"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1900.061.2017171205952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1900.061.2017171205952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1900.061.2017171205952.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1900.061.2017272135837.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1905.061.2017171205957.hdf","time_start":"2000-02-29T19:05:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079791","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T19:10:00.000Z","id":"G1462769135-LAADS","original_format":"ECHO10","granule_size":"152.572460174561","browse_flag":true,"polygons":[["-41.611012 + -148.655728 -46.16799 -119.388346 -27.959212 -117.021517 -24.512596 -140.714603 + -41.611012 -148.655728"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1905.061.2017171205957.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1905.061.2017171205957.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1905.061.2017171205957.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1905.061.2017272135722.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1910.061.2017171205945.hdf","time_start":"2000-02-29T19:10:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079792","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T19:15:00.000Z","id":"G1462769143-LAADS","original_format":"ECHO10","granule_size":"160.951293945312","browse_flag":true,"polygons":[["-57.31058 + -163.027049 -64.057027 -119.748136 -45.817521 -118.796576 -41.550123 -148.540094 + -57.31058 -163.027049"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1910.061.2017171205945.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1910.061.2017171205945.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1910.061.2017171205945.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1910.061.2017272140626.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1915.061.2017171210040.hdf","time_start":"2000-02-29T19:15:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079793","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T19:20:00.000Z","id":"G1462769145-LAADS","original_format":"ECHO10","granule_size":"161.389099121094","browse_flag":true,"polygons":[["-68.874454 + 165.093874 -81.628635 -110.059468 -63.577945 -118.921439 -57.338828 -162.687079 + -68.874454 165.093874"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1915.061.2017171210040.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1915.061.2017171210040.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1915.061.2017171210040.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1915.061.2017272140429.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.1920.061.2017171205948.hdf","time_start":"2000-02-29T19:20:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079500","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T19:25:00.000Z","id":"G1462769056-LAADS","original_format":"ECHO10","granule_size":"102.326085090637","browse_flag":true,"polygons":[["-68.398637 + 113.922236 -79.837422 34.550783 -81.029059 -108.859337 -69.100959 165.615562 + -68.398637 113.922236"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1920.061.2017171205948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.1920.061.2017171205948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.1920.061.2017171205948.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.1920.061.2017272134147.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2010.061.2017171204604.hdf","time_start":"2000-02-29T20:10:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077609","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T20:15:00.000Z","id":"G1462768496-LAADS","original_format":"ECHO10","granule_size":"53.6586389541626","browse_flag":true,"polygons":[["77.870453 + -155.01118 67.693357 -83.982891 70.208104 -31.933934 82.911865 62.624167 77.870453 + -155.01118"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2010.061.2017171204604.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2010.061.2017171204604.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2010.061.2017171204604.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2010.061.2017272133916.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2015.061.2017171204641.hdf","time_start":"2000-02-29T20:15:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077900","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T20:20:00.000Z","id":"G1462768653-LAADS","original_format":"ECHO10","granule_size":"149.681435585022","browse_flag":true,"polygons":[["60.180041 + -150.808895 54.744464 -111.423346 68.015095 -84.299376 78.324358 -157.154216 + 60.180041 -150.808895"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2015.061.2017171204641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2015.061.2017171204641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2015.061.2017171204641.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2015.061.2017272135035.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2020.061.2017171204715.hdf","time_start":"2000-02-29T20:20:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077901","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T20:25:00.000Z","id":"G1462768654-LAADS","original_format":"ECHO10","granule_size":"162.172849655151","browse_flag":true,"polygons":[["42.287985 + -151.880311 38.528041 -124.090408 55.021026 -111.98583 60.667228 -151.407337 + 42.287985 -151.880311"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2020.061.2017171204715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2020.061.2017171204715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2020.061.2017171204715.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2020.061.2017272141353.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2025.061.2017171205158.hdf","time_start":"2000-02-29T20:25:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077902","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T20:30:00.000Z","id":"G1462768657-LAADS","original_format":"ECHO10","granule_size":"155.563205718994","browse_flag":true,"polygons":[["24.47302 + -154.164565 21.34525 -131.331457 38.72051 -124.517481 42.719619 -152.133648 + 24.47302 -154.164565"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2025.061.2017171205158.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2025.061.2017171205158.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2025.061.2017171205158.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2025.061.2017272141350.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2030.061.2017171204707.hdf","time_start":"2000-02-29T20:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077903","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T20:35:00.000Z","id":"G1462768659-LAADS","original_format":"ECHO10","granule_size":"151.599012374878","browse_flag":true,"polygons":[["6.696582 + -157.248759 3.719426 -136.276823 21.482837 -131.622816 24.799896 -154.289032 + 6.696582 -157.248759"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2030.061.2017171204707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2030.061.2017171204707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2030.061.2017171204707.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2030.061.2017272140234.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2035.061.2017171204710.hdf","time_start":"2000-02-29T20:35:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077904","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T20:40:00.000Z","id":"G1462768656-LAADS","original_format":"ECHO10","granule_size":"150.155003547668","browse_flag":true,"polygons":[["-10.988489 + -161.288698 -14.157362 -139.961788 3.810675 -136.378446 6.89296 -157.301942 + -10.988489 -161.288698"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2035.061.2017171204710.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2035.061.2017171204710.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2035.061.2017171204710.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2035.061.2017272135339.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2040.061.2017171204703.hdf","time_start":"2000-02-29T20:40:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077905","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T20:45:00.000Z","id":"G1462768660-LAADS","original_format":"ECHO10","granule_size":"164.81596660614","browse_flag":true,"polygons":[["-28.46444 + -166.912633 -32.193857 -142.648848 -14.058088 -139.741988 -10.894441 -161.281602 + -28.46444 -166.912633"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2040.061.2017171204703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2040.061.2017171204703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2040.061.2017171204703.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2040.061.2017272141019.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2045.061.2017171204705.hdf","time_start":"2000-02-29T20:45:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077906","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T20:50:00.000Z","id":"G1462768655-LAADS","original_format":"ECHO10","granule_size":"165.92956161499","browse_flag":true,"polygons":[["-45.276011 + -175.804863 -50.176414 -144.394553 -31.954261 -142.226878 -28.37771 -166.881305 + -45.276011 -175.804863"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2045.061.2017171204705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2045.061.2017171204705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2045.061.2017171204705.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2045.061.2017272140745.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2050.061.2017171210105.hdf","time_start":"2000-02-29T20:50:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077907","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T20:55:00.000Z","id":"G1462768658-LAADS","original_format":"ECHO10","granule_size":"159.192687034607","browse_flag":true,"polygons":[["-60.442338 + 167.26724 -68.02777 -144.001901 -49.795033 -143.743936 -45.228052 -175.651532 + -60.442338 167.26724"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2050.061.2017171210105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2050.061.2017171210105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2050.061.2017171210105.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2050.061.2017272141205.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2055.061.2017171210014.hdf","time_start":"2000-02-29T20:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079794","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T21:00:00.000Z","id":"G1462769140-LAADS","original_format":"ECHO10","granule_size":"156.105523109436","browse_flag":true,"polygons":[["-70.116721 + 129.368941 -85.237305 -120.151735 -67.521532 -143.056102 -60.503741 167.671793 + -70.116721 129.368941"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2055.061.2017171210014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2055.061.2017171210014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2055.061.2017171210014.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2055.061.2017272140429.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2100.061.2017171205946.hdf","time_start":"2000-02-29T21:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079795","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T21:05:00.000Z","id":"G1462769141-LAADS","original_format":"ECHO10","granule_size":"68.7375612258911","browse_flag":true,"polygons":[["-66.40469 + 80.015528 -75.954229 13.360895 -84.61536 -120.225953 -70.452575 129.825153 + -66.40469 80.015528"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2100.061.2017171205946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2100.061.2017171205946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2100.061.2017171205946.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2100.061.2017272133830.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2150.061.2017171204622.hdf","time_start":"2000-02-29T21:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077908","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T21:55:00.000Z","id":"G1462768662-LAADS","original_format":"ECHO10","granule_size":"75.5157470703125","browse_flag":true,"polygons":[["73.950408 + -177.468657 65.315301 -116.988753 71.091597 -68.663413 86.232147 62.040673 + 73.950408 -177.468657"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2150.061.2017171204622.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2150.061.2017171204622.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2150.061.2017171204622.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2150.061.2017272134113.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2155.061.2017171204706.hdf","time_start":"2000-02-29T21:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077909","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T22:00:00.000Z","id":"G1462768666-LAADS","original_format":"ECHO10","granule_size":"158.790515899658","browse_flag":true,"polygons":[["56.206867 + -175.589052 51.292362 -139.743352 65.665188 -117.485508 74.424583 -178.92815 + 56.206867 -175.589052"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2155.061.2017171204706.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2155.061.2017171204706.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2155.061.2017171204706.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2155.061.2017272135813.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2200.061.2017171204822.hdf","time_start":"2000-02-29T22:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077910","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T22:05:00.000Z","id":"G1462768661-LAADS","original_format":"ECHO10","granule_size":"162.596584320068","browse_flag":true,"polygons":[["38.396812 + -177.020594 34.828843 -150.684433 51.545292 -140.274552 56.685737 -176.062793 + 38.396812 -177.020594"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2200.061.2017171204822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2200.061.2017171204822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2200.061.2017171204822.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2200.061.2017272141109.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2205.061.2017171204825.hdf","time_start":"2000-02-29T22:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077911","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T22:10:00.000Z","id":"G1462768667-LAADS","original_format":"ECHO10","granule_size":"151.671440124512","browse_flag":true,"polygons":[["20.493246 + -179.503412 17.433778 -157.30595 35.010561 -151.092726 38.807091 -177.243745 + 20.493246 -179.503412"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2205.061.2017171204825.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2205.061.2017171204825.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2205.061.2017171204825.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2205.061.2017272140134.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2210.061.2017171204739.hdf","time_start":"2000-02-29T22:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077912","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T22:15:00.000Z","id":"G1462768663-LAADS","original_format":"ECHO10","granule_size":"148.907236099243","browse_flag":true,"polygons":[["2.738028 + 177.226361 -0.253673 -161.915494 17.560572 -157.562564 20.794158 -179.608863 + 2.738028 177.226361"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2210.061.2017171204739.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2210.061.2017171204739.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2210.061.2017171204739.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2210.061.2017272135443.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2215.061.2017171204802.hdf","time_start":"2000-02-29T22:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077913","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T22:20:00.000Z","id":"G1462768665-LAADS","original_format":"ECHO10","granule_size":"150.6121301651","browse_flag":true,"polygons":[["-14.929166 + 172.905534 -18.189527 -165.356032 -0.175026 -161.939916 2.902323 177.185488 + -14.929166 172.905534"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2215.061.2017171204802.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2215.061.2017171204802.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2215.061.2017171204802.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2215.061.2017272135212.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2220.061.2017171204801.hdf","time_start":"2000-02-29T22:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077914","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T22:25:00.000Z","id":"G1462768670-LAADS","original_format":"ECHO10","granule_size":"153.962146759033","browse_flag":true,"polygons":[["-32.300599 + 166.761449 -36.221751 -167.857397 -18.059783 -165.091584 -14.837759 172.925431 + -32.300599 166.761449"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2220.061.2017171204801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2220.061.2017171204801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2220.061.2017171204801.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2220.061.2017272140023.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2225.061.2017171204805.hdf","time_start":"2000-02-29T22:25:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077915","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T22:30:00.000Z","id":"G1462768672-LAADS","original_format":"ECHO10","granule_size":"159.364342689514","browse_flag":true,"polygons":[["-48.871469 + 156.68027 -54.181824 -169.312188 -35.949836 -167.38719 -32.217158 166.804035 + -48.871469 156.68027"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2225.061.2017171204805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2225.061.2017171204805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2225.061.2017171204805.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2225.061.2017272140049.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2230.061.2017171204711.hdf","time_start":"2000-02-29T22:30:00.000Z","updated":"2022-11-22T11:54:43.630Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077610","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T22:35:00.000Z","id":"G1462768494-LAADS","original_format":"ECHO10","granule_size":"161.582222938538","browse_flag":true,"polygons":[["-63.338891 + 136.5138 -71.986953 -167.785322 -53.770553 -168.598912 -48.839738 156.876707 + -63.338891 136.5138"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2230.061.2017171204711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2230.061.2017171204711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2230.061.2017171204711.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2230.061.2017272140745.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2235.061.2017171204711.hdf","time_start":"2000-02-29T22:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077916","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T22:40:00.000Z","id":"G1462768664-LAADS","original_format":"ECHO10","granule_size":"137.119833946228","browse_flag":true,"polygons":[["-70.601213 + 92.670362 -87.407062 -88.801357 -71.457762 -166.805234 -63.439857 136.980444 + -70.601213 92.670362"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2235.061.2017171204711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2235.061.2017171204711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2235.061.2017171204711.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2235.061.2017272134501.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2240.061.2017171204638.hdf","time_start":"2000-02-29T22:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077917","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T22:45:00.000Z","id":"G1462768669-LAADS","original_format":"ECHO10","granule_size":"49.7092781066895","browse_flag":true,"polygons":[["-63.908788 + 47.683597 -72.029041 -9.781593 -86.968026 -98.85447 -70.994209 92.918005 -63.908788 + 47.683597"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2240.061.2017171204638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2240.061.2017171204638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2240.061.2017171204638.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2240.061.2017272133910.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2330.061.2017171204818.hdf","time_start":"2000-02-29T23:30:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077918","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-02-29T23:35:00.000Z","id":"G1462768668-LAADS","original_format":"ECHO10","granule_size":"106.203411102295","browse_flag":true,"polygons":[["69.998745 + 158.947 62.586781 -148.597165 71.194876 -105.996908 86.839704 106.377705 69.998745 + 158.947"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2330.061.2017171204818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2330.061.2017171204818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2330.061.2017171204818.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2330.061.2017272134406.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2335.061.2017171204726.hdf","time_start":"2000-02-29T23:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077919","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T23:40:00.000Z","id":"G1462768671-LAADS","original_format":"ECHO10","granule_size":"159.721941947937","browse_flag":true,"polygons":[["52.227179 + 159.507895 47.7357 -167.541473 62.919784 -149.157886 70.485976 157.878763 + 52.227179 159.507895"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2335.061.2017171204726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2335.061.2017171204726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2335.061.2017171204726.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2335.061.2017272140253.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2340.061.2017171204755.hdf","time_start":"2000-02-29T23:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077920","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T23:45:00.000Z","id":"G1462768673-LAADS","original_format":"ECHO10","granule_size":"163.095531463623","browse_flag":true,"polygons":[["34.412428 + 157.779541 31.00882 -177.134489 47.968073 -168.040281 52.696031 159.116119 + 34.412428 157.779541"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2340.061.2017171204755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2340.061.2017171204755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2340.061.2017171204755.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2340.061.2017272140916.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2345.061.2017171210308.hdf","time_start":"2000-02-29T23:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078535","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T23:50:00.000Z","id":"G1462768679-LAADS","original_format":"ECHO10","granule_size":"150.325046539307","browse_flag":true,"polygons":[["16.603523 + 155.132354 13.588932 176.838032 31.176817 -177.51038 34.800976 157.593833 + 16.603523 155.132354"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2345.061.2017171210308.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2345.061.2017171210308.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2345.061.2017171210308.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2345.061.2017272140134.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2350.061.2017171204814.hdf","time_start":"2000-02-29T23:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077921","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-02-29T23:55:00.000Z","id":"G1462768674-LAADS","original_format":"ECHO10","granule_size":"149.450412750244","browse_flag":true,"polygons":[["-1.215462 + 151.650549 -4.236936 172.499748 13.705716 176.617114 16.875544 155.040125 + -1.215462 151.650549"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2350.061.2017171204814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2350.061.2017171204814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2350.061.2017171204814.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2350.061.2017272135206.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000060.2355.061.2017171210026.hdf","time_start":"2000-02-29T23:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079796","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T00:00:00.000Z","id":"G1462769144-LAADS","original_format":"ECHO10","granule_size":"158.654108047485","browse_flag":true,"polygons":[["-18.854714 + 147.011803 -22.224326 169.291004 -4.168751 172.552224 -1.083431 151.620004 + -18.854714 147.011803"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2355.061.2017171210026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000060.2355.061.2017171210026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/060/MOD02QKM.A2000060.2355.061.2017171210026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/060/MOBRGB.A2000060.2355.061.2017272140011.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0000.061.2017171205950.hdf","time_start":"2000-03-01T00:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079797","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T00:05:00.000Z","id":"G1462771771-LAADS","original_format":"ECHO10","granule_size":"157.455564498901","browse_flag":true,"polygons":[["-36.098474 + 140.242376 -40.247241 166.984159 -22.063706 169.600809 -18.764203 147.033939 + -36.098474 140.242376"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0000.061.2017171205950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0000.061.2017171205950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0000.061.2017171205950.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0000.061.2017272135550.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0005.061.2017171210115.hdf","time_start":"2000-03-01T00:05:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079501","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T00:10:00.000Z","id":"G1462771688-LAADS","original_format":"ECHO10","granule_size":"155.567633628845","browse_flag":true,"polygons":[["-52.375689 + 128.704631 -58.181925 165.888715 -39.943424 167.504033 -36.022776 140.310768 + -52.375689 128.704631"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0005.061.2017171210115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0005.061.2017171210115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0005.061.2017171210115.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0005.061.2017272140355.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0010.061.2017171210009.hdf","time_start":"2000-03-01T00:10:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079798","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T00:15:00.000Z","id":"G1462771759-LAADS","original_format":"ECHO10","granule_size":"152.843193054199","browse_flag":true,"polygons":[["-65.911972 + 104.468557 -75.922866 169.296326 -57.740754 166.673397 -52.363561 128.951811 + -65.911972 104.468557"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0010.061.2017171210009.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0010.061.2017171210009.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0010.061.2017171210009.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0010.061.2017272135932.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0015.061.2017171210012.hdf","time_start":"2000-03-01T00:15:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079502","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T00:20:00.000Z","id":"G1462771692-LAADS","original_format":"ECHO10","granule_size":"128.254631996155","browse_flag":true,"polygons":[["-70.27022 + 55.878301 -85.242499 -57.375636 -75.364688 170.447583 -66.060748 104.984895 + -70.27022 55.878301"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0015.061.2017171210012.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0015.061.2017171210012.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0015.061.2017171210012.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0015.061.2017272134009.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0020.061.2017171205952.hdf","time_start":"2000-03-01T00:20:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079799","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T00:25:00.000Z","id":"G1462771767-LAADS","original_format":"ECHO10","granule_size":"25.242527961731","browse_flag":true,"polygons":[["-61.064496 + 16.698659 -68.088868 -33.601272 -85.451535 -64.971447 -70.693661 55.857567 + -61.064496 16.698659"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0020.061.2017171205952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0020.061.2017171205952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0020.061.2017171205952.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0020.061.2017272134017.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0105.061.2017171210537.hdf","time_start":"2000-03-01T01:05:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079800","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T01:10:00.000Z","id":"G1462771768-LAADS","original_format":"ECHO10","granule_size":"20.5742778778076","browse_flag":true,"polygons":[["83.535713 + 121.228087 70.08901 -142.810406 67.503489 -91.167562 77.301889 -21.255128 + 83.535713 121.228087"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0105.061.2017171210537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0105.061.2017171210537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0105.061.2017171210537.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0105.061.2017272133959.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0110.061.2017171210015.hdf","time_start":"2000-03-01T01:10:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079801","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T01:15:00.000Z","id":"G1462771762-LAADS","original_format":"ECHO10","granule_size":"135.441829681396","browse_flag":true,"polygons":[["66.036047 + 134.807978 59.567082 -178.970775 70.449871 -142.920427 83.873977 116.344153 + 66.036047 134.807978"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0110.061.2017171210015.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0110.061.2017171210015.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0110.061.2017171210015.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0110.061.2017272134923.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0115.061.2017171210119.hdf","time_start":"2000-03-01T01:15:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079802","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T01:20:00.000Z","id":"G1462771761-LAADS","original_format":"ECHO10","granule_size":"166.67841053009","browse_flag":true,"polygons":[["48.249338 + 134.5087 44.091718 165.104234 59.873405 -179.537144 66.524038 133.963677 48.249338 + 134.5087"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0115.061.2017171210119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0115.061.2017171210119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0115.061.2017171210119.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0115.061.2017272140109.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0120.061.2017171210041.hdf","time_start":"2000-03-01T01:20:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079803","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T01:25:00.000Z","id":"G1462771760-LAADS","original_format":"ECHO10","granule_size":"166.182160377502","browse_flag":true,"polygons":[["30.429392 + 132.533936 27.157767 156.582631 44.310534 164.620214 48.701901 134.18063 30.429392 + 132.533936"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0120.061.2017171210041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0120.061.2017171210041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0120.061.2017171210041.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0120.061.2017272141509.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0125.061.2017171210013.hdf","time_start":"2000-03-01T01:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079503","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T01:30:00.000Z","id":"G1462771694-LAADS","original_format":"ECHO10","granule_size":"165.112910270691","browse_flag":true,"polygons":[["12.629729 + 129.713163 9.644357 151.037725 27.312953 156.239808 30.794083 132.375827 12.629729 + 129.713163"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0125.061.2017171210013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0125.061.2017171210013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0125.061.2017171210013.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0125.061.2017272141059.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0130.061.2017171210117.hdf","time_start":"2000-03-01T01:30:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079804","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T01:35:00.000Z","id":"G1462771766-LAADS","original_format":"ECHO10","granule_size":"168.137096405029","browse_flag":true,"polygons":[["-5.071073 + 126.039415 -8.136203 146.983526 9.752186 150.851974 12.871569 129.639868 -5.071073 + 126.039415"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0130.061.2017171210117.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0130.061.2017171210117.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0130.061.2017171210117.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0130.061.2017272140656.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0135.061.2017171210116.hdf","time_start":"2000-03-01T01:35:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079805","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T01:40:00.000Z","id":"G1462771773-LAADS","original_format":"ECHO10","granule_size":"160.256388664246","browse_flag":true,"polygons":[["-22.760998 + 121.026421 -26.252531 143.975098 -8.076943 147.109711 -4.967816 126.025535 + -22.760998 121.026421"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0135.061.2017171210116.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0135.061.2017171210116.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0135.061.2017171210116.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0135.061.2017272140250.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0140.061.2017171210022.hdf","time_start":"2000-03-01T01:40:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079806","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T01:45:00.000Z","id":"G1462771779-LAADS","original_format":"ECHO10","granule_size":"152.614156723022","browse_flag":true,"polygons":[["-39.85414 + 113.514887 -44.266002 141.881195 -26.063804 144.334472 -22.671782 121.051368 + -39.85414 113.514887"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0140.061.2017171210022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0140.061.2017171210022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0140.061.2017171210022.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0140.061.2017272134920.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0145.061.2017171210010.hdf","time_start":"2000-03-01T01:45:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079807","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T01:50:00.000Z","id":"G1462771782-LAADS","original_format":"ECHO10","granule_size":"166.667946815491","browse_flag":true,"polygons":[["-55.759536 + 100.151404 -62.170008 141.251851 -43.930055 142.452268 -39.785287 113.60391 + -55.759536 100.151404"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0145.061.2017171210010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0145.061.2017171210010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0145.061.2017171210010.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0145.061.2017272141230.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0150.061.2017171210022.hdf","time_start":"2000-03-01T01:50:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079808","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T01:55:00.000Z","id":"G1462771776-LAADS","original_format":"ECHO10","granule_size":"142.292567253113","browse_flag":true,"polygons":[["-68.050804 + 70.93282 -79.819962 147.961502 -61.704333 142.020084 -55.772719 100.457744 + -68.050804 70.93282"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0150.061.2017171210022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0150.061.2017171210022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0150.061.2017171210022.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0150.061.2017272135214.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0155.061.2017171210019.hdf","time_start":"2000-03-01T01:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079809","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T02:00:00.000Z","id":"G1462771770-LAADS","original_format":"ECHO10","granule_size":"113.958789825439","browse_flag":true,"polygons":[["-69.163274 + 19.897651 -81.624371 -67.748194 -79.21701 149.582311 -68.25125 71.471388 -69.163274 + 19.897651"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0155.061.2017171210019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0155.061.2017171210019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0155.061.2017171210019.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0155.061.2017272134013.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0245.061.2017171210041.hdf","time_start":"2000-03-01T02:45:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079810","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T02:50:00.000Z","id":"G1462771775-LAADS","original_format":"ECHO10","granule_size":"41.3922786712646","browse_flag":true,"polygons":[["79.730377 + 104.252506 68.582147 -178.244778 69.448713 -125.647097 81.145908 -40.826336 + 79.730377 104.252506"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0245.061.2017171210041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0245.061.2017171210041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0245.061.2017171210041.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0245.061.2017272134042.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0250.061.2017171210046.hdf","time_start":"2000-03-01T02:50:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079811","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T02:55:00.000Z","id":"G1462771783-LAADS","original_format":"ECHO10","granule_size":"149.808857917786","browse_flag":true,"polygons":[["62.070372 + 110.292565 56.336627 151.644128 68.947102 -178.555078 80.156241 101.625857 + 62.070372 110.292565"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0250.061.2017171210046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0250.061.2017171210046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0250.061.2017171210046.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0250.061.2017272135121.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0255.061.2017171210048.hdf","time_start":"2000-03-01T02:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079812","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T03:00:00.000Z","id":"G1462771777-LAADS","original_format":"ECHO10","granule_size":"164.843197822571","browse_flag":true,"polygons":[["44.2725 + 109.460325 40.390129 138.078777 56.622349 151.078238 62.558623 109.672313 + 44.2725 109.460325"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0255.061.2017171210048.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0255.061.2017171210048.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0255.061.2017171210048.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0255.061.2017272135222.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0300.061.2017171210105.hdf","time_start":"2000-03-01T03:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079813","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T03:05:00.000Z","id":"G1462771772-LAADS","original_format":"ECHO10","granule_size":"148.780654907227","browse_flag":true,"polygons":[["26.45397 + 107.271071 23.284597 130.443785 40.593111 137.624578 44.706955 109.187988 + 26.45397 107.271071"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0300.061.2017171210105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0300.061.2017171210105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0300.061.2017171210105.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0300.061.2017272135829.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0305.061.2017171211304.hdf","time_start":"2000-03-01T03:05:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080139","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T03:10:00.000Z","id":"G1462771868-LAADS","original_format":"ECHO10","granule_size":"160.976836204529","browse_flag":true,"polygons":[["8.670121 + 104.251758 5.692986 125.312583 23.42766 130.134558 26.790904 107.11169 8.670121 + 104.251758"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0305.061.2017171211304.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0305.061.2017171211304.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0305.061.2017171211304.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0305.061.2017272140925.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0310.061.2017171210042.hdf","time_start":"2000-03-01T03:10:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079814","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T03:15:00.000Z","id":"G1462771778-LAADS","original_format":"ECHO10","granule_size":"164.823763847351","browse_flag":true,"polygons":[["-9.02492 + 100.34005 -12.152917 121.500654 5.790904 125.173579 8.879418 104.19212 -9.02492 + 100.34005"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0310.061.2017171210042.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0310.061.2017171210042.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0310.061.2017171210042.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0310.061.2017272140442.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0315.061.2017171210905.hdf","time_start":"2000-03-01T03:15:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080140","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T03:20:00.000Z","id":"G1462771872-LAADS","original_format":"ECHO10","granule_size":"164.271659851074","browse_flag":true,"polygons":[["-26.546855 + 94.941841 -30.189974 118.713303 -12.067204 121.690946 -8.92868 100.337339 + -26.546855 94.941841"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0315.061.2017171210905.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0315.061.2017171210905.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0315.061.2017171210905.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0315.061.2017272141036.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0320.061.2017171210044.hdf","time_start":"2000-03-01T03:20:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080141","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T03:25:00.000Z","id":"G1462771874-LAADS","original_format":"ECHO10","granule_size":"170.523107528687","browse_flag":true,"polygons":[["-43.543946 + 86.509362 -48.271941 116.842617 -29.967294 119.126683 -26.458501 94.971686 + -43.543946 86.509362"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0320.061.2017171210044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0320.061.2017171210044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0320.061.2017171210044.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0320.061.2017272141240.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0325.061.2017171210058.hdf","time_start":"2000-03-01T03:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079815","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T03:30:00.000Z","id":"G1462771780-LAADS","original_format":"ECHO10","granule_size":"162.768322944641","browse_flag":true,"polygons":[["-58.982858 + 70.871842 -66.142817 116.847278 -47.905374 117.468507 -43.490068 86.643751 + -58.982858 70.871842"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0325.061.2017171210058.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0325.061.2017171210058.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0325.061.2017171210058.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0325.061.2017272141049.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0330.061.2017171210915.hdf","time_start":"2000-03-01T03:30:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080461","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T03:35:00.000Z","id":"G1462771902-LAADS","original_format":"ECHO10","granule_size":"147.661939620972","browse_flag":true,"polygons":[["-69.61727 + 35.87203 -83.587194 131.679892 -65.651327 117.670361 -59.026539 71.243147 + -69.61727 35.87203"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0330.061.2017171210915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0330.061.2017171210915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0330.061.2017171210915.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0330.061.2017272134836.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0335.061.2017171210901.hdf","time_start":"2000-03-01T03:35:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080462","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T03:40:00.000Z","id":"G1462771895-LAADS","original_format":"ECHO10","granule_size":"86.3031187057495","browse_flag":true,"polygons":[["-67.411232 + -14.691369 -77.80233 -87.01594 -82.952295 133.015962 -69.891228 36.370788 + -67.411232 -14.691369"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0335.061.2017171210901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0335.061.2017171210901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0335.061.2017171210901.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0335.061.2017272134117.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0425.061.2017171210039.hdf","time_start":"2000-03-01T04:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079816","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T04:30:00.000Z","id":"G1462771781-LAADS","original_format":"ECHO10","granule_size":"67.7218227386475","browse_flag":true,"polygons":[["75.821153 + 82.747521 66.483847 147.906531 70.747388 -161.717868 84.767825 -52.14575 75.821153 + 82.747521"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0425.061.2017171210039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0425.061.2017171210039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0425.061.2017171210039.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0425.061.2017272134152.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0430.061.2017171210105.hdf","time_start":"2000-03-01T04:30:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715079817","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T04:35:00.000Z","id":"G1462771784-LAADS","original_format":"ECHO10","granule_size":"155.222266197205","browse_flag":true,"polygons":[["58.098081 + 85.569415 52.948955 123.017425 66.838106 147.460527 76.285314 81.027401 58.098081 + 85.569415"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0430.061.2017171210105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0430.061.2017171210105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0430.061.2017171210105.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0430.061.2017272135312.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0435.061.2017171210046.hdf","time_start":"2000-03-01T04:35:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080142","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T04:40:00.000Z","id":"G1462771882-LAADS","original_format":"ECHO10","granule_size":"162.232120513916","browse_flag":true,"polygons":[["40.291293 + 84.324208 36.637751 111.310724 53.21746 122.456079 58.58242 85.076383 40.291293 + 84.324208"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0435.061.2017171210046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0435.061.2017171210046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0435.061.2017171210046.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0435.061.2017272135604.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0440.061.2017171210314.hdf","time_start":"2000-03-01T04:40:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080143","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T04:45:00.000Z","id":"G1462771879-LAADS","original_format":"ECHO10","granule_size":"166.531241416931","browse_flag":true,"polygons":[["22.474815 + 81.933967 19.390338 104.401631 36.828394 110.875412 40.711203 84.081458 22.474815 + 81.933967"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0440.061.2017171210314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0440.061.2017171210314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0440.061.2017171210314.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0440.061.2017272135606.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0445.061.2017171210109.hdf","time_start":"2000-03-01T04:45:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080144","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T04:50:00.000Z","id":"G1462771873-LAADS","original_format":"ECHO10","granule_size":"138.98058795929","browse_flag":true,"polygons":[["4.708897 + 78.74459 1.729423 99.645114 19.519001 104.141464 22.790605 81.805691 4.708897 + 78.74459"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0445.061.2017171210109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0445.061.2017171210109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0445.061.2017171210109.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0445.061.2017272135446.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0450.061.2017171210112.hdf","time_start":"2000-03-01T04:50:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080145","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T04:55:00.000Z","id":"G1462771875-LAADS","original_format":"ECHO10","granule_size":"158.577777862549","browse_flag":true,"polygons":[["-12.967329 + 74.569303 -16.176776 96.094733 1.812366 99.590674 4.892164 78.698749 -12.967329 + 74.569303"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0450.061.2017171210112.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0450.061.2017171210112.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0450.061.2017171210112.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0450.061.2017272140500.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0455.061.2017171210534.hdf","time_start":"2000-03-01T04:55:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080146","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T05:00:00.000Z","id":"G1462771877-LAADS","original_format":"ECHO10","granule_size":"164.208611488342","browse_flag":true,"polygons":[["-30.393338 + 68.700205 -34.212627 93.50187 -16.064016 96.336519 -12.87513 74.586525 -30.393338 + 68.700205"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0455.061.2017171210534.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0455.061.2017171210534.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0455.061.2017171210534.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0455.061.2017272140802.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0500.061.2017171210139.hdf","time_start":"2000-03-01T05:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080147","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T05:05:00.000Z","id":"G1462771881-LAADS","original_format":"ECHO10","granule_size":"158.588743209839","browse_flag":true,"polygons":[["-47.088984 + 59.240157 -52.18399 91.896766 -33.956962 93.946631 -30.307183 68.733596 -47.088984 + 59.240157"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0500.061.2017171210139.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0500.061.2017171210139.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0500.061.2017171210139.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0500.061.2017272140927.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0505.061.2017171210133.hdf","time_start":"2000-03-01T05:05:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080148","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T05:10:00.000Z","id":"G1462771880-LAADS","original_format":"ECHO10","granule_size":"162.920227050781","browse_flag":true,"polygons":[["-61.929811 + 40.786345 -70.017086 92.646194 -51.787946 92.492231 -47.049115 59.415636 -61.929811 + 40.786345"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0505.061.2017171210133.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0505.061.2017171210133.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0505.061.2017171210133.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0505.061.2017272140425.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0510.061.2017171210931.hdf","time_start":"2000-03-01T05:10:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080463","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T05:15:00.000Z","id":"G1462771890-LAADS","original_format":"ECHO10","granule_size":"145.534769058228","browse_flag":true,"polygons":[["-70.47247 + -0.435037 -86.790744 136.293988 -69.497238 93.714364 -62.006612 41.231361 + -70.47247 -0.435037"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0510.061.2017171210931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0510.061.2017171210931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0510.061.2017171210931.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0510.061.2017272134659.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0515.061.2017171210852.hdf","time_start":"2000-03-01T05:15:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080464","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T05:20:00.000Z","id":"G1462771899-LAADS","original_format":"ECHO10","granule_size":"60.4564752578735","browse_flag":true,"polygons":[["-65.108527 + -47.669696 -73.905267 -109.447259 -86.134759 133.838764 -70.785589 -0.083606 + -65.108527 -47.669696"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0515.061.2017171210852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0515.061.2017171210852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0515.061.2017171210852.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0515.061.2017272134250.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0605.061.2017171212654.hdf","time_start":"2000-03-01T06:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082151","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T06:10:00.000Z","id":"G1462772225-LAADS","original_format":"ECHO10","granule_size":"97.192551612854","browse_flag":true,"polygons":[["71.884552 + 59.591721 63.933041 115.633192 71.255653 161.153804 87.158691 -28.684406 71.884552 + 59.591721"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0605.061.2017171212654.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0605.061.2017171212654.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0605.061.2017171212654.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0605.061.2017272134609.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0610.061.2017171212720.hdf","time_start":"2000-03-01T06:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082152","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T06:15:00.000Z","id":"G1462772220-LAADS","original_format":"ECHO10","granule_size":"156.072589874268","browse_flag":true,"polygons":[["54.127396 + 60.724854 49.445481 94.989605 64.271074 115.105041 72.367049 58.384394 54.127396 + 60.724854"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0610.061.2017171212720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0610.061.2017171212720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0610.061.2017171212720.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0610.061.2017272140404.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0615.061.2017171211816.hdf","time_start":"2000-03-01T06:15:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081185","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T06:20:00.000Z","id":"G1462772046-LAADS","original_format":"ECHO10","granule_size":"165.306728363037","browse_flag":true,"polygons":[["36.314754 + 59.147833 32.847711 84.759473 49.698429 94.437732 54.602531 60.319841 36.314754 + 59.147833"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0615.061.2017171211816.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0615.061.2017171211816.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0615.061.2017171211816.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0615.061.2017272135914.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0620.061.2017171211811.hdf","time_start":"2000-03-01T06:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081186","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T06:25:00.000Z","id":"G1462772054-LAADS","original_format":"ECHO10","granule_size":"141.242998123169","browse_flag":true,"polygons":[["18.497197 + 56.561333 15.489291 78.405996 33.039625 84.289071 36.720687 58.923234 18.497197 + 56.561333"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0620.061.2017171211811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0620.061.2017171211811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0620.061.2017171211811.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0620.061.2017272134706.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0625.061.2017171211813.hdf","time_start":"2000-03-01T06:25:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080815","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T06:30:00.000Z","id":"G1462771934-LAADS","original_format":"ECHO10","granule_size":"140.355340003967","browse_flag":true,"polygons":[["0.760894 + 53.193385 -2.241723 74.042217 15.593398 78.25874 18.790658 56.461821 0.760894 + 53.193385"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0625.061.2017171211813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0625.061.2017171211813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0625.061.2017171211813.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0625.061.2017272135502.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0630.061.2017171213556.hdf","time_start":"2000-03-01T06:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082815","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T06:35:00.000Z","id":"G1462772432-LAADS","original_format":"ECHO10","granule_size":"159.266507148743","browse_flag":true,"polygons":[["-16.89545 + 48.742155 -20.203034 70.726307 -2.169143 74.061788 0.906792 53.179307 -16.89545 + 48.742155"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0630.061.2017171213556.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0630.061.2017171213556.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0630.061.2017171213556.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0630.061.2017272140317.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0635.061.2017171213749.hdf","time_start":"2000-03-01T06:35:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082495","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T06:40:00.000Z","id":"G1462772315-LAADS","original_format":"ECHO10","granule_size":"156.50542640686","browse_flag":true,"polygons":[["-34.205234 + 42.29798 -38.231494 68.320927 -20.057611 71.011296 -16.805952 48.758334 -34.205234 + 42.29798"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0635.061.2017171213749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0635.061.2017171213749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0635.061.2017171213749.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0635.061.2017272140341.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0640.061.2017171212725.hdf","time_start":"2000-03-01T06:40:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082153","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T06:45:00.000Z","id":"G1462772218-LAADS","original_format":"ECHO10","granule_size":"166.056354522705","browse_flag":true,"polygons":[["-50.631268 + 31.512817 -56.175991 67.036803 -37.941458 68.813557 -34.120358 42.335229 -50.631268 + 31.512817"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0640.061.2017171212725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0640.061.2017171212725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0640.061.2017171212725.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0640.061.2017272141136.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0645.061.2017171212714.hdf","time_start":"2000-03-01T06:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082154","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T06:50:00.000Z","id":"G1462772222-LAADS","original_format":"ECHO10","granule_size":"159.190140724182","browse_flag":true,"polygons":[["-64.668638 + 9.433368 -73.954375 69.28814 -55.750667 67.737464 -50.609622 31.736476 -64.668638 + 9.433368"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0645.061.2017171212714.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0645.061.2017171212714.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0645.061.2017171212714.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0645.061.2017272140604.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0650.061.2017171212705.hdf","time_start":"2000-03-01T06:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082155","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T06:55:00.000Z","id":"G1462772224-LAADS","original_format":"ECHO10","granule_size":"140.378249168396","browse_flag":true,"polygons":[["-70.539189 + -37.006035 -86.741999 -175.252617 -73.411041 70.370141 -64.791632 9.933991 + -70.539189 -37.006035"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0650.061.2017171212705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0650.061.2017171212705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0650.061.2017171212705.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0650.061.2017272134324.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0655.061.2017171212657.hdf","time_start":"2000-03-01T06:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082156","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T07:00:00.000Z","id":"G1462772233-LAADS","original_format":"ECHO10","granule_size":"35.2887773513794","browse_flag":true,"polygons":[["-62.424991 + -79.239527 -69.985051 -132.878051 -86.667763 173.17447 -70.891674 -36.86345 + -62.424991 -79.239527"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0655.061.2017171212657.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0655.061.2017171212657.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0655.061.2017171212657.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0655.061.2017272134310.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0745.061.2017171211753.hdf","time_start":"2000-03-01T07:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081187","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T07:50:00.000Z","id":"G1462772053-LAADS","original_format":"ECHO10","granule_size":"127.033595085144","browse_flag":true,"polygons":[["67.929955 + 35.680168 61.046492 84.706617 70.93089 124.184546 85.545198 5.756274 67.929955 + 35.680168"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0745.061.2017171211753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0745.061.2017171211753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0745.061.2017171211753.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0745.061.2017272135145.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0750.061.2017171211756.hdf","time_start":"2000-03-01T07:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081188","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T07:55:00.000Z","id":"G1462772055-LAADS","original_format":"ECHO10","granule_size":"162.52156162262","browse_flag":true,"polygons":[["50.154324 + 35.76234 45.84399 67.443503 61.358677 84.156848 68.420676 34.747757 50.154324 + 35.76234"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0750.061.2017171211756.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0750.061.2017171211756.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0750.061.2017171211756.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0750.061.2017272135640.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0755.061.2017171212701.hdf","time_start":"2000-03-01T07:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081189","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T08:00:00.000Z","id":"G1462772048-LAADS","original_format":"ECHO10","granule_size":"164.359818458557","browse_flag":true,"polygons":[["32.3391 + 33.896395 29.008789 58.42864 46.072075 66.943262 50.615268 35.397059 32.3391 + 33.896395"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0755.061.2017171212701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0755.061.2017171212701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0755.061.2017171212701.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0755.061.2017272135714.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0800.061.2017171211827.hdf","time_start":"2000-03-01T08:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080816","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T08:05:00.000Z","id":"G1462771931-LAADS","original_format":"ECHO10","granule_size":"154.220335006714","browse_flag":true,"polygons":[["14.532393 + 31.170588 11.543247 52.64029 29.175021 58.045626 32.717146 33.737851 14.532393 + 31.170588"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0800.061.2017171211827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0800.061.2017171211827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0800.061.2017171211827.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0800.061.2017272134514.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0805.061.2017171212711.hdf","time_start":"2000-03-01T08:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081523","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T08:10:00.000Z","id":"G1462772074-LAADS","original_format":"ECHO10","granule_size":"159.046439170837","browse_flag":true,"polygons":[["-3.179825 + 27.608339 -6.220937 48.491931 11.650467 52.465755 14.790126 31.097237 -3.179825 + 27.608339"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0805.061.2017171212711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0805.061.2017171212711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0805.061.2017171212711.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0805.061.2017272134849.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0810.061.2017171212516.hdf","time_start":"2000-03-01T08:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081826","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T08:15:00.000Z","id":"G1462772084-LAADS","original_format":"ECHO10","granule_size":"164.619078636169","browse_flag":true,"polygons":[["-20.801772 + 22.800674 -24.229766 45.38455 -6.155684 48.572155 -3.067168 27.586144 -20.801772 + 22.800674"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0810.061.2017171212516.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0810.061.2017171212516.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0810.061.2017171212516.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0810.061.2017272140229.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0815.061.2017171211806.hdf","time_start":"2000-03-01T08:15:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081190","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T08:20:00.000Z","id":"G1462772058-LAADS","original_format":"ECHO10","granule_size":"163.356252670288","browse_flag":true,"polygons":[["-37.974129 + 15.681738 -42.24478 43.187414 -24.052237 45.723455 -20.713089 22.824362 -37.974129 + 15.681738"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0815.061.2017171211806.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0815.061.2017171211806.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0815.061.2017171211806.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0815.061.2017272140351.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0820.061.2017171211823.hdf","time_start":"2000-03-01T08:20:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080817","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T08:25:00.000Z","id":"G1462771929-LAADS","original_format":"ECHO10","granule_size":"161.958517074585","browse_flag":true,"polygons":[["-54.071594 + 3.273104 -60.162827 42.306497 -41.923976 43.729598 -37.896995 15.744344 -54.071594 + 3.273104"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0820.061.2017171211823.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0820.061.2017171211823.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0820.061.2017171211823.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0820.061.2017272140922.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0825.061.2017171212808.hdf","time_start":"2000-03-01T08:25:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081827","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T08:30:00.000Z","id":"G1462772090-LAADS","original_format":"ECHO10","granule_size":"156.946222305298","browse_flag":true,"polygons":[["-67.035599 + -23.319193 -77.873309 46.827053 -59.711666 42.982842 -54.072283 3.551609 -67.035599 + -23.319193"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0825.061.2017171212808.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0825.061.2017171212808.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0825.061.2017171212808.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0825.061.2017272140458.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0830.061.2017171212630.hdf","time_start":"2000-03-01T08:30:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081828","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T08:35:00.000Z","id":"G1462772085-LAADS","original_format":"ECHO10","granule_size":"130.683135032654","browse_flag":true,"polygons":[["-69.812224 + -73.469596 -83.493603 -171.945434 -77.283283 48.499059 -67.207931 -22.772664 + -69.812224 -73.469596"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0830.061.2017171212630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0830.061.2017171212630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0830.061.2017171212630.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0830.061.2017272134511.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0920.061.2017171211809.hdf","time_start":"2000-03-01T09:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081191","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T09:25:00.000Z","id":"G1462772056-LAADS","original_format":"ECHO10","granule_size":"31.2876653671265","browse_flag":true,"polygons":[["81.653551 + 2.43944 69.42782 88.038052 68.553732 140.576721 79.230755 -142.7986 81.653551 + 2.43944"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0920.061.2017171211809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0920.061.2017171211809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0920.061.2017171211809.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0920.061.2017272134405.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0925.061.2017171211822.hdf","time_start":"2000-03-01T09:25:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081192","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T09:30:00.000Z","id":"G1462772060-LAADS","original_format":"ECHO10","granule_size":"148.842240333557","browse_flag":true,"polygons":[["64.05642 + 11.313302 57.976711 54.989443 69.784819 87.83137 82.046573 -1.106339 64.05642 + 11.313302"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0925.061.2017171211822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0925.061.2017171211822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0925.061.2017171211822.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0925.061.2017272135823.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0930.061.2017171211834.hdf","time_start":"2000-03-01T09:30:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080818","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T09:35:00.000Z","id":"G1462771935-LAADS","original_format":"ECHO10","granule_size":"160.628072738647","browse_flag":true,"polygons":[["46.175324 + 10.748204 42.17004 40.262404 58.273533 54.420007 64.54699 10.611293 46.175324 + 10.748204"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0930.061.2017171211834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0930.061.2017171211834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0930.061.2017171211834.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0930.061.2017272140337.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0935.061.2017171211841.hdf","time_start":"2000-03-01T09:35:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081193","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T09:40:00.000Z","id":"G1462772057-LAADS","original_format":"ECHO10","granule_size":"153.892632484436","browse_flag":true,"polygons":[["28.361785 + 8.643454 25.143687 32.22651 42.380152 39.796422 46.620277 10.432791 28.361785 + 8.643454"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0935.061.2017171211841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0935.061.2017171211841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0935.061.2017171211841.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0935.061.2017272135607.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0940.061.2017171211814.hdf","time_start":"2000-03-01T09:40:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081194","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T09:45:00.000Z","id":"G1462772059-LAADS","original_format":"ECHO10","granule_size":"122.098866462708","browse_flag":true,"polygons":[["10.56803 + 5.731184 7.590394 26.899131 25.293922 31.89524 28.710899 8.496877 10.56803 + 5.731184"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0940.061.2017171211814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0940.061.2017171211814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0940.061.2017171211814.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0940.061.2017272134316.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0945.061.2017171212658.hdf","time_start":"2000-03-01T09:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082496","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T09:50:00.000Z","id":"G1462772312-LAADS","original_format":"ECHO10","granule_size":"155.431391716003","browse_flag":true,"polygons":[["-7.125139 + 1.926939 -10.221183 22.964457 7.694861 26.728397 10.796226 5.655113 -7.125139 + 1.926939"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0945.061.2017171212658.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0945.061.2017171212658.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0945.061.2017171212658.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0945.061.2017272135358.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0950.061.2017171212731.hdf","time_start":"2000-03-01T09:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082157","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T09:55:00.000Z","id":"G1462772223-LAADS","original_format":"ECHO10","granule_size":"157.954149246216","browse_flag":true,"polygons":[["-24.686457 + -3.266686 -28.255131 20.084678 -10.150162 23.129956 -7.026695 1.918186 -24.686457 + -3.266686"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0950.061.2017171212731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0950.061.2017171212731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0950.061.2017171212731.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0950.061.2017272140004.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.0955.061.2017171212720.hdf","time_start":"2000-03-01T09:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082158","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T10:00:00.000Z","id":"G1462772226-LAADS","original_format":"ECHO10","granule_size":"170.91222858429","browse_flag":true,"polygons":[["-41.690703 + -11.202759 -46.255953 18.11219 -28.049299 20.475552 -24.595962 -3.240003 -41.690703 + -11.202759"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0955.061.2017171212720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.0955.061.2017171212720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.0955.061.2017171212720.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.0955.061.2017272140403.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1000.061.2017171212719.hdf","time_start":"2000-03-01T10:00:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082159","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T10:05:00.000Z","id":"G1462772227-LAADS","original_format":"ECHO10","granule_size":"162.899709701538","browse_flag":true,"polygons":[["-57.380124 + -25.622029 -64.145358 17.766721 -45.906442 18.706539 -41.631378 -11.08318 + -57.380124 -25.622029"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1000.061.2017171212719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1000.061.2017171212719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1000.061.2017171212719.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1000.061.2017272141145.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1005.061.2017171212725.hdf","time_start":"2000-03-01T10:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082160","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T10:10:00.000Z","id":"G1462772228-LAADS","original_format":"ECHO10","granule_size":"157.025350570679","browse_flag":true,"polygons":[["-68.905272 + -57.627923 -81.719923 27.443305 -63.667487 18.53538 -57.408078 -25.28152 -68.905272 + -57.627923"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1005.061.2017171212725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1005.061.2017171212725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1005.061.2017171212725.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1005.061.2017272140652.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1010.061.2017171212707.hdf","time_start":"2000-03-01T10:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082161","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T10:15:00.000Z","id":"G1462772229-LAADS","original_format":"ECHO10","granule_size":"102.500772476196","browse_flag":true,"polygons":[["-68.358951 + -108.788493 -79.736007 171.808946 -81.091107 29.230682 -69.13598 -57.097685 + -68.358951 -108.788493"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1010.061.2017171212707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1010.061.2017171212707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1010.061.2017171212707.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1010.061.2017272134702.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1100.061.2017171212717.hdf","time_start":"2000-03-01T11:00:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082162","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T11:05:00.000Z","id":"G1462772231-LAADS","original_format":"ECHO10","granule_size":"60.1919479370117","browse_flag":true,"polygons":[["77.782686 + -17.431268 67.606312 53.373574 70.196643 105.264363 83.001628 -159.565394 + 77.782686 -17.431268"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1100.061.2017171212717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1100.061.2017171212717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1100.061.2017171212717.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1100.061.2017272134505.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1105.061.2017171212745.hdf","time_start":"2000-03-01T11:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082163","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T11:10:00.000Z","id":"G1462772237-LAADS","original_format":"ECHO10","granule_size":"159.859787940979","browse_flag":true,"polygons":[["60.087387 + -13.300082 54.659925 26.007149 67.95746 53.004378 78.232498 -19.549332 60.087387 + -13.300082"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1105.061.2017171212745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1105.061.2017171212745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1105.061.2017171212745.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1105.061.2017272140708.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1110.061.2017171211852.hdf","time_start":"2000-03-01T11:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081195","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T11:15:00.000Z","id":"G1462772061-LAADS","original_format":"ECHO10","granule_size":"166.221989631653","browse_flag":true,"polygons":[["42.285544 + -14.372528 38.520256 13.424674 54.936262 25.444677 60.574115 -13.884274 42.285544 + -14.372528"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1110.061.2017171211852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1110.061.2017171211852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1110.061.2017171211852.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1110.061.2017272140754.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1115.061.2017171211901.hdf","time_start":"2000-03-01T11:15:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081196","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T11:20:00.000Z","id":"G1462772064-LAADS","original_format":"ECHO10","granule_size":"156.981175422668","browse_flag":true,"polygons":[["24.380637 + -16.671239 21.254377 6.149324 38.714481 12.990958 42.714903 -14.633824 24.380637 + -16.671239"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1115.061.2017171211901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1115.061.2017171211901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1115.061.2017171211901.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1115.061.2017272135136.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1120.061.2017171211855.hdf","time_start":"2000-03-01T11:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081197","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T11:25:00.000Z","id":"G1462772069-LAADS","original_format":"ECHO10","granule_size":"152.239243507385","browse_flag":true,"polygons":[["6.604718 + -19.758894 3.629082 1.200981 21.393623 5.847465 24.708721 -16.793647 6.604718 + -19.758894"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1120.061.2017171211855.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1120.061.2017171211855.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1120.061.2017171211855.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1120.061.2017272134958.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1125.061.2017171211910.hdf","time_start":"2000-03-01T11:25:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081198","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T11:30:00.000Z","id":"G1462772065-LAADS","original_format":"ECHO10","granule_size":"146.556420326233","browse_flag":true,"polygons":[["-11.077816 + -23.806643 -14.249834 -2.468225 3.718594 1.111151 6.801908 -19.81335 -11.077816 + -23.806643"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1125.061.2017171211910.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1125.061.2017171211910.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1125.061.2017171211910.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1125.061.2017272135619.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1130.061.2017171212750.hdf","time_start":"2000-03-01T11:30:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082497","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T11:35:00.000Z","id":"G1462772314-LAADS","original_format":"ECHO10","granule_size":"151.696872711182","browse_flag":true,"polygons":[["-28.551829 + -29.439392 -32.286059 -5.150131 -14.149976 -2.246286 -10.984436 -23.796671 + -28.551829 -29.439392"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1130.061.2017171212750.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1130.061.2017171212750.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1130.061.2017171212750.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1130.061.2017272140133.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1135.061.2017171212746.hdf","time_start":"2000-03-01T11:35:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082498","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T11:40:00.000Z","id":"G1462772376-LAADS","original_format":"ECHO10","granule_size":"160.600825309753","browse_flag":true,"polygons":[["-45.356653 + -38.359132 -50.267509 -6.894888 -32.045395 -4.730924 -28.463917 -29.409948 + -45.356653 -38.359132"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1135.061.2017171212746.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1135.061.2017171212746.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1135.061.2017171212746.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1135.061.2017272141009.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1140.061.2017171213627.hdf","time_start":"2000-03-01T11:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083100","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T11:45:00.000Z","id":"G1462772453-LAADS","original_format":"ECHO10","granule_size":"159.629075050354","browse_flag":true,"polygons":[["-60.511424 + -55.348112 -68.118435 -6.483235 -49.885712 -6.242516 -45.31102 -38.200364 + -60.511424 -55.348112"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1140.061.2017171213627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1140.061.2017171213627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1140.061.2017171213627.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1140.061.2017272141158.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1145.061.2017171212744.hdf","time_start":"2000-03-01T11:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082164","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T11:50:00.000Z","id":"G1462772230-LAADS","original_format":"ECHO10","granule_size":"153.518321990967","browse_flag":true,"polygons":[["-70.136953 + -93.391917 -85.331375 17.626416 -67.614207 -5.614975 -60.573249 -54.942102 + -70.136953 -93.391917"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1145.061.2017171212744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1145.061.2017171212744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1145.061.2017171212744.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1145.061.2017272140343.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1150.061.2017171212705.hdf","time_start":"2000-03-01T11:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082499","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T11:55:00.000Z","id":"G1462772381-LAADS","original_format":"ECHO10","granule_size":"73.6704597473145","browse_flag":true,"polygons":[["-66.311157 + -142.59309 -75.869078 150.856528 -84.687582 17.971908 -70.424106 -92.960855 + -66.311157 -142.59309"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1150.061.2017171212705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1150.061.2017171212705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1150.061.2017171212705.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1150.061.2017272134514.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1240.061.2017171212731.hdf","time_start":"2000-03-01T12:40:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082165","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T12:45:00.000Z","id":"G1462772234-LAADS","original_format":"ECHO10","granule_size":"93.0312786102295","browse_flag":true,"polygons":[["73.863786 + -39.724019 65.253094 20.339431 71.102958 68.544168 86.337707 -159.934902 73.863786 + -39.724019"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1240.061.2017171212731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1240.061.2017171212731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1240.061.2017171212731.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1240.061.2017272134909.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1245.061.2017171212755.hdf","time_start":"2000-03-01T12:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082500","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T12:50:00.000Z","id":"G1462772382-LAADS","original_format":"ECHO10","granule_size":"158.26935005188","browse_flag":true,"polygons":[["56.117636 + -38.085764 51.208032 -2.312172 65.602356 19.84121 74.323975 -41.371492 56.117636 + -38.085764"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1245.061.2017171212755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1245.061.2017171212755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1245.061.2017171212755.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1245.061.2017272141357.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1250.061.2017171211919.hdf","time_start":"2000-03-01T12:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081199","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T12:55:00.000Z","id":"G1462772067-LAADS","original_format":"ECHO10","granule_size":"160.261545181274","browse_flag":true,"polygons":[["38.303538 + -39.526765 34.738979 -13.217954 51.460614 -2.842784 56.59139 -38.559839 38.303538 + -39.526765"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1250.061.2017171211919.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1250.061.2017171211919.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1250.061.2017171211919.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1250.061.2017272141525.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1255.061.2017171212729.hdf","time_start":"2000-03-01T12:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082501","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T13:00:00.000Z","id":"G1462772383-LAADS","original_format":"ECHO10","granule_size":"158.491161346436","browse_flag":true,"polygons":[["20.489293 + -41.998215 17.427641 -19.796002 34.919263 -13.622691 38.712616 -39.741875 + 20.489293 -41.998215"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1255.061.2017171212729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1255.061.2017171212729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1255.061.2017171212729.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1255.061.2017272141621.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1300.061.2017171213802.hdf","time_start":"2000-03-01T13:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083101","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T13:05:00.000Z","id":"G1462772460-LAADS","original_format":"ECHO10","granule_size":"154.281164169312","browse_flag":true,"polygons":[["2.646038 + -45.285889 -0.346535 -24.426099 17.554468 -20.052866 20.789366 -42.106507 + 2.646038 -45.285889"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1300.061.2017171213802.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1300.061.2017171213802.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1300.061.2017171213802.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1300.061.2017272140335.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1305.061.2017171214007.hdf","time_start":"2000-03-01T13:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082816","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T13:10:00.000Z","id":"G1462772430-LAADS","original_format":"ECHO10","granule_size":"167.576939582825","browse_flag":true,"polygons":[["-15.022256 + -49.601331 -18.282417 -27.861704 -0.267563 -24.45003 2.808246 -45.314912 -15.022256 + -49.601331"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1305.061.2017171214007.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1305.061.2017171214007.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1305.061.2017171214007.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1305.061.2017272140642.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1310.061.2017171212748.hdf","time_start":"2000-03-01T13:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082166","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T13:15:00.000Z","id":"G1462772232-LAADS","original_format":"ECHO10","granule_size":"157.576233863831","browse_flag":true,"polygons":[["-32.391927 + -55.757561 -36.315666 -30.35775 -18.152509 -27.595902 -14.932371 -49.58227 + -32.391927 -55.757561"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1310.061.2017171212748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1310.061.2017171212748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1310.061.2017171212748.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1310.061.2017272140432.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1315.061.2017171212743.hdf","time_start":"2000-03-01T13:15:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082167","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T13:20:00.000Z","id":"G1462772240-LAADS","original_format":"ECHO10","granule_size":"135.488086700439","browse_flag":true,"polygons":[["-48.954143 + -65.878556 -54.274638 -31.810435 -36.042062 -29.890911 -32.305875 -55.724477 + -48.954143 -65.878556"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1315.061.2017171212743.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1315.061.2017171212743.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1315.061.2017171212743.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1315.061.2017272135852.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1320.061.2017171212735.hdf","time_start":"2000-03-01T13:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082502","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T13:25:00.000Z","id":"G1462772388-LAADS","original_format":"ECHO10","granule_size":"150.957265853882","browse_flag":true,"polygons":[["-63.4049 + -86.128277 -72.079454 -30.250613 -53.862736 -31.093766 -48.92367 -65.679107 + -63.4049 -86.128277"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1320.061.2017171212735.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1320.061.2017171212735.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1320.061.2017171212735.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1320.061.2017272140813.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1325.061.2017171212803.hdf","time_start":"2000-03-01T13:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082503","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T13:30:00.000Z","id":"G1462772394-LAADS","original_format":"ECHO10","granule_size":"150.100522041321","browse_flag":true,"polygons":[["-70.604317 + -130.110191 -87.418135 50.791854 -71.550743 -29.303484 -63.505686 -85.660619 + -70.604317 -130.110191"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1325.061.2017171212803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1325.061.2017171212803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1325.061.2017171212803.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1325.061.2017272135326.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1330.061.2017171212745.hdf","time_start":"2000-03-01T13:30:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082168","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T13:35:00.000Z","id":"G1462772239-LAADS","original_format":"ECHO10","granule_size":"46.307897567749","browse_flag":true,"polygons":[["-63.804116 + -174.879725 -71.949285 127.911122 -87.032522 40.331716 -70.939956 -129.859473 + -63.804116 -174.879725"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1330.061.2017171212745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1330.061.2017171212745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1330.061.2017171212745.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1330.061.2017272134555.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1420.061.2017171212754.hdf","time_start":"2000-03-01T14:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082169","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T14:25:00.000Z","id":"G1462772235-LAADS","original_format":"ECHO10","granule_size":"120.407820701599","browse_flag":true,"polygons":[["69.905357 + -63.544777 62.517981 -11.233422 71.185626 31.2135 86.789696 -114.695377 69.905357 + -63.544777"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1420.061.2017171212754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1420.061.2017171212754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1420.061.2017171212754.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1420.061.2017272135010.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1425.061.2017171212821.hdf","time_start":"2000-03-01T14:25:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082170","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T14:30:00.000Z","id":"G1462772238-LAADS","original_format":"ECHO10","granule_size":"158.801929473877","browse_flag":true,"polygons":[["52.136161 + -62.979737 47.646894 -30.08203 62.843081 -11.776114 70.392449 -64.570228 52.136161 + -62.979737"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1425.061.2017171212821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1425.061.2017171212821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1425.061.2017171212821.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1425.061.2017272141037.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1430.061.2017171212821.hdf","time_start":"2000-03-01T14:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082504","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T14:35:00.000Z","id":"G1462772386-LAADS","original_format":"ECHO10","granule_size":"158.148898124695","browse_flag":true,"polygons":[["34.322315 + -64.730733 30.920973 -39.663387 47.88404 -30.597003 52.602736 -63.389404 34.322315 + -64.730733"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1430.061.2017171212821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1430.061.2017171212821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1430.061.2017171212821.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1430.061.2017272141207.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1435.061.2017171212803.hdf","time_start":"2000-03-01T14:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082505","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T14:40:00.000Z","id":"G1462772384-LAADS","original_format":"ECHO10","granule_size":"139.959122657776","browse_flag":true,"polygons":[["16.512901 + -67.37818 13.498758 -45.675987 31.087754 -40.035766 34.709057 -64.912871 16.512901 + -67.37818"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1435.061.2017171212803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1435.061.2017171212803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1435.061.2017171212803.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1435.061.2017272135910.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1440.061.2017171213138.hdf","time_start":"2000-03-01T14:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082817","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T14:45:00.000Z","id":"G1462772437-LAADS","original_format":"ECHO10","granule_size":"161.503035545349","browse_flag":true,"polygons":[["-1.217935 + -70.841061 -4.239444 -49.988132 13.615845 -45.897158 16.783969 -67.463042 + -1.217935 -70.841061"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1440.061.2017171213138.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1440.061.2017171213138.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1440.061.2017171213138.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1440.061.2017272140144.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1445.061.2017171212821.hdf","time_start":"2000-03-01T14:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082506","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T14:50:00.000Z","id":"G1462772380-LAADS","original_format":"ECHO10","granule_size":"172.17668056488","browse_flag":true,"polygons":[["-18.942613 + -75.508839 -22.315027 -53.218901 -4.170664 -49.940707 -1.085233 -70.876584 + -18.942613 -75.508839"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1445.061.2017171212821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1445.061.2017171212821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1445.061.2017171212821.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1445.061.2017272140441.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1450.061.2017171212824.hdf","time_start":"2000-03-01T14:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082507","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T14:55:00.000Z","id":"G1462772392-LAADS","original_format":"ECHO10","granule_size":"166.925863265991","browse_flag":true,"polygons":[["-36.18401 + -82.290988 -40.337075 -55.512999 -22.153633 -52.900996 -18.852263 -75.484323 + -36.18401 -82.290988"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1450.061.2017171212824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1450.061.2017171212824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1450.061.2017171212824.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1450.061.2017272140033.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1455.061.2017171213704.hdf","time_start":"2000-03-01T14:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082818","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T15:00:00.000Z","id":"G1462772433-LAADS","original_format":"ECHO10","granule_size":"158.03872013092","browse_flag":true,"polygons":[["-52.453216 + -93.865344 -58.271265 -56.60421 -40.032772 -54.997123 -36.107795 -82.222809 + -52.453216 -93.865344"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1455.061.2017171213704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1455.061.2017171213704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1455.061.2017171213704.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1455.061.2017272140342.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1500.061.2017171212831.hdf","time_start":"2000-03-01T15:00:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082171","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T15:05:00.000Z","id":"G1462772243-LAADS","original_format":"ECHO10","granule_size":"161.596471786499","browse_flag":true,"polygons":[["-65.969529 + -118.198166 -76.01177 -53.134831 -57.830373 -55.815937 -52.444009 -93.611603 + -65.969529 -118.198166"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1500.061.2017171212831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1500.061.2017171212831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1500.061.2017171212831.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1500.061.2017272141534.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1505.061.2017171212830.hdf","time_start":"2000-03-01T15:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082508","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T15:10:00.000Z","id":"G1462772379-LAADS","original_format":"ECHO10","granule_size":"145.384665489197","browse_flag":true,"polygons":[["-70.255406 + -166.887976 -85.184444 81.079406 -75.459486 -52.125293 -66.117248 -117.683717 + -70.255406 -166.887976"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1505.061.2017171212830.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1505.061.2017171212830.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1505.061.2017171212830.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1505.061.2017272135151.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1510.061.2017171212758.hdf","time_start":"2000-03-01T15:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082509","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T15:15:00.000Z","id":"G1462772389-LAADS","original_format":"ECHO10","granule_size":"22.9914875030518","browse_flag":true,"polygons":[["-60.961038 + 154.163885 -68.011517 104.035535 -85.404532 73.747185 -70.623908 -166.871273 + -60.961038 154.163885"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1510.061.2017171212758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1510.061.2017171212758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1510.061.2017171212758.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1510.061.2017272134510.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1555.061.2017171213125.hdf","time_start":"2000-03-01T15:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082510","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T16:00:00.000Z","id":"G1462772395-LAADS","original_format":"ECHO10","granule_size":"23.1288595199585","browse_flag":true,"polygons":[["83.45069 + -101.038155 70.055215 -5.550081 67.546816 46.126157 77.387128 116.358431 83.45069 + -101.038155"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1555.061.2017171213125.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1555.061.2017171213125.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1555.061.2017171213125.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1555.061.2017272134639.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1600.061.2017171212816.hdf","time_start":"2000-03-01T16:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082511","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T16:05:00.000Z","id":"G1462772385-LAADS","original_format":"ECHO10","granule_size":"140.763557434082","browse_flag":true,"polygons":[["65.948535 + -87.713006 59.497441 -41.572551 70.422975 -5.6711 83.789144 -105.91852 65.948535 + -87.713006"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1600.061.2017171212816.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1600.061.2017171212816.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1600.061.2017171212816.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1600.061.2017272135334.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1605.061.2017171212801.hdf","time_start":"2000-03-01T16:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082512","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T16:10:00.000Z","id":"G1462772402-LAADS","original_format":"ECHO10","granule_size":"159.952228546143","browse_flag":true,"polygons":[["48.163125 + -87.995638 44.011008 -57.435228 59.801902 -42.135093 66.438132 -88.526184 + 48.163125 -87.995638"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1605.061.2017171212801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1605.061.2017171212801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1605.061.2017171212801.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1605.061.2017272140520.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1610.061.2017171212935.hdf","time_start":"2000-03-01T16:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082513","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T16:15:00.000Z","id":"G1462772391-LAADS","original_format":"ECHO10","granule_size":"156.285750389099","browse_flag":true,"polygons":[["30.345942 + -89.976604 27.07535 -65.936196 44.230372 -57.919797 48.616411 -88.327329 30.345942 + -89.976604"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1610.061.2017171212935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1610.061.2017171212935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1610.061.2017171212935.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1610.061.2017272140515.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1615.061.2017171213655.hdf","time_start":"2000-03-01T16:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083102","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T16:20:00.000Z","id":"G1462772461-LAADS","original_format":"ECHO10","granule_size":"139.988335609436","browse_flag":true,"polygons":[["12.54776 + -92.797502 9.561023 -71.469027 27.229512 -66.276092 30.70974 -90.1322 12.54776 + -92.797502"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1615.061.2017171213655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1615.061.2017171213655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1615.061.2017171213655.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1615.061.2017272135415.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1620.061.2017171212830.hdf","time_start":"2000-03-01T16:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082172","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T16:25:00.000Z","id":"G1462772241-LAADS","original_format":"ECHO10","granule_size":"158.921500205994","browse_flag":true,"polygons":[["-5.151078 + -96.476034 -8.218866 -75.520537 9.669368 -71.657332 12.789513 -92.871509 -5.151078 + -96.476034"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1620.061.2017171212830.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1620.061.2017171212830.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1620.061.2017171212830.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1620.061.2017272140801.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1625.061.2017171212821.hdf","time_start":"2000-03-01T16:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082514","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T16:30:00.000Z","id":"G1462772397-LAADS","original_format":"ECHO10","granule_size":"161.643198013306","browse_flag":true,"polygons":[["-22.752428 + -101.472251 -26.24962 -78.507219 -8.158899 -75.393464 -5.052163 -96.493358 + -22.752428 -101.472251"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1625.061.2017171212821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1625.061.2017171212821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1625.061.2017171212821.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1625.061.2017272140823.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1630.061.2017171212849.hdf","time_start":"2000-03-01T16:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082515","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T16:35:00.000Z","id":"G1462772396-LAADS","original_format":"ECHO10","granule_size":"155.33562374115","browse_flag":true,"polygons":[["-39.927634 + -109.027885 -44.348901 -80.614293 -26.057758 -78.148599 -22.662933 -101.447288 + -39.927634 -109.027885"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1630.061.2017171212849.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1630.061.2017171212849.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1630.061.2017171212849.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1630.061.2017272140549.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1635.061.2017171212833.hdf","time_start":"2000-03-01T16:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082516","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T16:40:00.000Z","id":"G1462772393-LAADS","original_format":"ECHO10","granule_size":"168.178346633911","browse_flag":true,"polygons":[["-55.82746 + -122.423745 -62.251909 -81.236973 -44.011215 -80.046345 -39.861112 -108.929065 + -55.82746 -122.423745"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1635.061.2017171212833.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1635.061.2017171212833.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1635.061.2017171212833.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1635.061.2017272141625.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1640.061.2017171212819.hdf","time_start":"2000-03-01T16:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082517","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T16:45:00.000Z","id":"G1462772398-LAADS","original_format":"ECHO10","granule_size":"162.428464889526","browse_flag":true,"polygons":[["-68.09285 + -151.750767 -79.890128 -74.177382 -61.783029 -80.373254 -55.842943 -122.111056 + -68.09285 -151.750767"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1640.061.2017171212819.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1640.061.2017171212819.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1640.061.2017171212819.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1640.061.2017272141147.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1645.061.2017171213915.hdf","time_start":"2000-03-01T16:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082518","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T16:50:00.000Z","id":"G1462772403-LAADS","original_format":"ECHO10","granule_size":"119.771644592285","browse_flag":true,"polygons":[["-69.136006 + 157.186897 -81.566223 70.406864 -79.314404 -73.183503 -68.294809 -151.223591 + -69.136006 157.186897"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1645.061.2017171213915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1645.061.2017171213915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1645.061.2017171213915.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1645.061.2017272134905.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1735.061.2017171213255.hdf","time_start":"2000-03-01T17:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082819","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T17:40:00.000Z","id":"G1462772428-LAADS","original_format":"ECHO10","granule_size":"45.1866664886475","browse_flag":true,"polygons":[["79.648064 + -118.170843 68.542799 -40.936338 69.481612 11.633202 81.220235 96.869601 79.648064 + -118.170843"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1735.061.2017171213255.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1735.061.2017171213255.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1735.061.2017171213255.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1735.061.2017272134631.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1740.061.2017171212858.hdf","time_start":"2000-03-01T17:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082820","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T17:45:00.000Z","id":"G1462772435-LAADS","original_format":"ECHO10","granule_size":"149.77342414856","browse_flag":true,"polygons":[["61.984239 + -112.216509 56.296879 -71.013396 68.954917 -41.324047 80.080715 -120.804561 + 61.984239 -112.216509"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1740.061.2017171212858.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1740.061.2017171212858.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1740.061.2017171212858.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1740.061.2017272135652.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1745.061.2017171212834.hdf","time_start":"2000-03-01T17:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082173","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T17:50:00.000Z","id":"G1462772242-LAADS","original_format":"ECHO10","granule_size":"161.529973983765","browse_flag":true,"polygons":[["44.192055 + -113.008632 40.316101 -84.460224 56.555677 -71.505178 62.480046 -112.767173 + 44.192055 -113.008632"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1745.061.2017171212834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1745.061.2017171212834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1745.061.2017171212834.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1745.061.2017272140147.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1750.061.2017171211919.hdf","time_start":"2000-03-01T17:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081200","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T17:55:00.000Z","id":"G1462772063-LAADS","original_format":"ECHO10","granule_size":"160.834957122803","browse_flag":true,"polygons":[["26.379519 + -115.263395 23.208182 -92.078219 40.518919 -84.914405 44.625309 -113.35099 + 26.379519 -115.263395"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1750.061.2017171211919.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1750.061.2017171211919.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1750.061.2017171211919.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1750.061.2017272135722.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1755.061.2017171211923.hdf","time_start":"2000-03-01T17:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081524","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T18:00:00.000Z","id":"G1462772081-LAADS","original_format":"ECHO10","granule_size":"155.921500205994","browse_flag":true,"polygons":[["8.590667 + -118.257858 5.614314 -97.193863 23.349314 -92.379267 26.714131 -115.39412 + 8.590667 -118.257858"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1755.061.2017171211923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1755.061.2017171211923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1755.061.2017171211923.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1755.061.2017272140551.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1800.061.2017171211928.hdf","time_start":"2000-03-01T18:00:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081201","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T18:05:00.000Z","id":"G1462772072-LAADS","original_format":"ECHO10","granule_size":"153.437193870544","browse_flag":true,"polygons":[["-9.100902 + -122.17414 -12.231442 -101.004643 5.712894 -97.335859 8.801963 -118.317447 + -9.100902 -122.17414"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1800.061.2017171211928.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1800.061.2017171211928.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1800.061.2017171211928.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1800.061.2017272135918.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1805.061.2017171211926.hdf","time_start":"2000-03-01T18:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081202","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T18:10:00.000Z","id":"G1462772066-LAADS","original_format":"ECHO10","granule_size":"154.067626953125","browse_flag":true,"polygons":[["-26.622011 + -127.577043 -30.269203 -103.777963 -12.146218 -100.805074 -9.005778 -122.173294 + -26.622011 -127.577043"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1805.061.2017171211926.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1805.061.2017171211926.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1805.061.2017171211926.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1805.061.2017272140427.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1810.061.2017171212901.hdf","time_start":"2000-03-01T18:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082821","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T18:15:00.000Z","id":"G1462772438-LAADS","original_format":"ECHO10","granule_size":"154.634119033813","browse_flag":true,"polygons":[["-43.533393 + -135.978821 -48.261254 -105.649467 -30.044263 -103.38214 -26.533574 -127.549262 + -43.533393 -135.978821"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1810.061.2017171212901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1810.061.2017171212901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1810.061.2017171212901.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1810.061.2017272140614.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.1815.061.2017171212829.hdf","time_start":"2000-03-01T18:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082519","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T18:20:00.000Z","id":"G1462772399-LAADS","original_format":"ECHO10","granule_size":"165.91898727417","browse_flag":true,"polygons":[["-58.975101 + -151.60561 -66.132714 -105.6487 -47.89486 -105.025149 -43.480181 -135.840828 + -58.975101 -151.60561"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1815.061.2017171212829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.1815.061.2017171212829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.1815.061.2017171212829.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.1815.061.2017272141802.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2235.061.2017171212856.hdf","time_start":"2000-03-01T22:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082520","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T22:40:00.000Z","id":"G1462772400-LAADS","original_format":"ECHO10","granule_size":"125.171887397766","browse_flag":true,"polygons":[["67.93555 + 173.202646 61.042998 -137.773169 70.905846 -98.569744 85.485785 144.079119 + 67.93555 173.202646"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2235.061.2017171212856.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2235.061.2017171212856.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2235.061.2017171212856.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2235.061.2017272135213.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2240.061.2017171212908.hdf","time_start":"2000-03-01T22:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082822","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T22:45:00.000Z","id":"G1462772439-LAADS","original_format":"ECHO10","granule_size":"155.374932289124","browse_flag":true,"polygons":[["50.0632 + 173.26541 45.770321 -155.128872 61.369813 -138.362407 68.424922 172.244332 + 50.0632 173.26541"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2240.061.2017171212908.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2240.061.2017171212908.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2240.061.2017171212908.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2240.061.2017272141146.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2245.061.2017171212843.hdf","time_start":"2000-03-01T22:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082521","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T22:50:00.000Z","id":"G1462772401-LAADS","original_format":"ECHO10","granule_size":"166.908828735352","browse_flag":true,"polygons":[["32.250329 + 171.399452 28.921925 -164.098145 45.990474 -155.604742 50.528013 172.911327 + 32.250329 171.399452"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2245.061.2017171212843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2245.061.2017171212843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2245.061.2017171212843.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2245.061.2017272141434.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2250.061.2017171213242.hdf","time_start":"2000-03-01T22:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083103","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T22:55:00.000Z","id":"G1462772452-LAADS","original_format":"ECHO10","granule_size":"145.869525909424","browse_flag":true,"polygons":[["14.446342 + 168.658853 11.449617 -169.855062 29.082504 -164.456334 32.626093 171.23079 + 14.446342 168.658853"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2250.061.2017171213242.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2250.061.2017171213242.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2250.061.2017171213242.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2250.061.2017272140323.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2255.061.2017171212901.hdf","time_start":"2000-03-01T22:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082522","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T23:00:00.000Z","id":"G1462772406-LAADS","original_format":"ECHO10","granule_size":"146.934077262878","browse_flag":true,"polygons":[["-3.270315 + 165.084922 -6.312722 -174.026691 11.561614 -170.057226 14.701338 168.579823 + -3.270315 165.084922"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2255.061.2017171212901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2255.061.2017171212901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2255.061.2017171212901.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2255.061.2017272135852.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2300.061.2017171212831.hdf","time_start":"2000-03-01T23:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082823","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T23:05:00.000Z","id":"G1462772440-LAADS","original_format":"ECHO10","granule_size":"155.830247879028","browse_flag":true,"polygons":[["-20.890934 + 160.263437 -24.324058 -177.122695 -6.248746 -173.938151 -3.154921 165.059598 + -20.890934 160.263437"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2300.061.2017171212831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2300.061.2017171212831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2300.061.2017171212831.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2300.061.2017272140506.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2305.061.2017171212909.hdf","time_start":"2000-03-01T23:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082824","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T23:10:00.000Z","id":"G1462772443-LAADS","original_format":"ECHO10","granule_size":"165.242330551147","browse_flag":true,"polygons":[["-38.060542 + 153.125655 -42.341066 -179.323081 -24.146992 -176.788853 -20.801869 160.289221 + -38.060542 153.125655"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2305.061.2017171212909.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2305.061.2017171212909.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2305.061.2017171212909.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2305.061.2017272141359.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2310.061.2017171212906.hdf","time_start":"2000-03-01T23:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082174","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T23:15:00.000Z","id":"G1462772252-LAADS","original_format":"ECHO10","granule_size":"160.127165794373","browse_flag":true,"polygons":[["-54.155961 + 140.690584 -60.260904 179.801776 -42.020374 -178.779914 -37.988617 153.207597 + -54.155961 140.690584"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2310.061.2017171212906.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2310.061.2017171212906.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2310.061.2017171212906.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2310.061.2017272141242.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2315.061.2017171212848.hdf","time_start":"2000-03-01T23:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082523","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-01T23:20:00.000Z","id":"G1462772404-LAADS","original_format":"ECHO10","granule_size":"153.805909156799","browse_flag":true,"polygons":[["-67.091385 + 113.973608 -77.957925 -175.256744 -59.805891 -179.369918 -54.157803 140.97112 + -67.091385 113.973608"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2315.061.2017171212848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2315.061.2017171212848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2315.061.2017171212848.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2315.061.2017272140516.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000061.2320.061.2017171212908.hdf","time_start":"2000-03-01T23:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082825","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-01T23:25:00.000Z","id":"G1462772441-LAADS","original_format":"ECHO10","granule_size":"118.906106948853","browse_flag":true,"polygons":[["-69.787743 + 63.757995 -83.413399 -33.780186 -77.386138 -174.070625 -67.26873 114.504304 + -69.787743 63.757995"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2320.061.2017171212908.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000061.2320.061.2017171212908.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/061/MOD02QKM.A2000061.2320.061.2017171212908.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/061/MOBRGB.A2000061.2320.061.2017272134711.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0010.061.2017171213645.hdf","time_start":"2000-03-02T00:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083432","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T00:15:00.000Z","id":"G1462775203-LAADS","original_format":"ECHO10","granule_size":"31.6508617401123","browse_flag":true,"polygons":[["81.568804 + 140.129573 69.381747 -134.686329 68.58764 -82.156728 79.321169 -5.19306 81.568804 + 140.129573"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0010.061.2017171213645.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0010.061.2017171213645.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0010.061.2017171213645.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0010.061.2017272134521.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0015.061.2017171213705.hdf","time_start":"2000-03-02T00:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083433","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T00:20:00.000Z","id":"G1462775207-LAADS","original_format":"ECHO10","granule_size":"141.792391777039","browse_flag":true,"polygons":[["63.967047 + 148.863453 57.903133 -167.612287 69.750995 -134.912385 81.967602 136.734074 + 63.967047 148.863453"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0015.061.2017171213705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0015.061.2017171213705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0015.061.2017171213705.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0015.061.2017272140000.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0020.061.2017171212921.hdf","time_start":"2000-03-02T00:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082826","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T00:25:00.000Z","id":"G1462774945-LAADS","original_format":"ECHO10","granule_size":"166.381323814392","browse_flag":true,"polygons":[["46.17395 + 148.236452 42.165237 177.766814 58.197391 -168.178418 64.453909 148.112136 + 46.17395 148.236452"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0020.061.2017171212921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0020.061.2017171212921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0020.061.2017171212921.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0020.061.2017272142046.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0025.061.2017171212854.hdf","time_start":"2000-03-02T00:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082827","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T00:30:00.000Z","id":"G1462774942-LAADS","original_format":"ECHO10","granule_size":"164.988591194153","browse_flag":true,"polygons":[["28.26397 + 146.134581 25.052425 169.695733 42.376722 177.2953 46.618442 147.930243 28.26397 + 146.134581"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0025.061.2017171212854.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0025.061.2017171212854.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0025.061.2017171212854.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0025.061.2017272142113.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0030.061.2017171213704.hdf","time_start":"2000-03-02T00:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083783","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T00:35:00.000Z","id":"G1462775389-LAADS","original_format":"ECHO10","granule_size":"157.030012130737","browse_flag":true,"polygons":[["10.472554 + 143.218739 7.494289 164.383402 25.20089 169.371231 28.616612 145.989642 10.472554 + 143.218739"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0030.061.2017171213704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0030.061.2017171213704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0030.061.2017171213704.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0030.061.2017272141235.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0035.061.2017171213713.hdf","time_start":"2000-03-02T00:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083434","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T00:40:00.000Z","id":"G1462775208-LAADS","original_format":"ECHO10","granule_size":"162.097882270813","browse_flag":true,"polygons":[["-7.224713 + 139.418823 -10.321879 160.457018 7.597788 164.216725 10.697872 143.153899 + -7.224713 139.418823"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0035.061.2017171213713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0035.061.2017171213713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0035.061.2017171213713.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0035.061.2017272141438.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0040.061.2017171213655.hdf","time_start":"2000-03-02T00:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083784","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T00:45:00.000Z","id":"G1462775382-LAADS","original_format":"ECHO10","granule_size":"162.658431053162","browse_flag":true,"polygons":[["-24.787055 + 134.218763 -28.358904 157.586081 -10.249824 160.627927 -7.128225 139.413988 + -24.787055 134.218763"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0040.061.2017171213655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0040.061.2017171213655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0040.061.2017171213655.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0040.061.2017272140754.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0045.061.2017171213701.hdf","time_start":"2000-03-02T00:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083435","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T00:50:00.000Z","id":"G1462775209-LAADS","original_format":"ECHO10","granule_size":"155.303366661072","browse_flag":true,"polygons":[["-41.790689 + 126.263274 -46.361072 155.605192 -28.149941 157.96599 -24.699678 134.246478 + -41.790689 126.263274"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0045.061.2017171213701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0045.061.2017171213701.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0045.061.2017171213701.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0045.061.2017272140058.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0050.061.2017171213734.hdf","time_start":"2000-03-02T00:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083436","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T00:55:00.000Z","id":"G1462775206-LAADS","original_format":"ECHO10","granule_size":"165.624006271362","browse_flag":true,"polygons":[["-57.464831 + 111.771326 -64.24821 155.273664 -46.008432 156.202038 -41.726992 126.36987 + -57.464831 111.771326"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0050.061.2017171213734.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0050.061.2017171213734.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0050.061.2017171213734.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0050.061.2017272142348.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0055.061.2017171213724.hdf","time_start":"2000-03-02T00:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083437","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T01:00:00.000Z","id":"G1462775210-LAADS","original_format":"ECHO10","granule_size":"140.473903656006","browse_flag":true,"polygons":[["-68.948841 + 79.614915 -81.800214 165.56369 -63.765639 156.187947 -57.494433 112.113423 + -68.948841 79.614915"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0055.061.2017171213724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0055.061.2017171213724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0055.061.2017171213724.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0055.061.2017272135702.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0100.061.2017171214656.hdf","time_start":"2000-03-02T01:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084085","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T01:05:00.000Z","id":"G1462775537-LAADS","original_format":"ECHO10","granule_size":"95.3881998062134","browse_flag":true,"polygons":[["-68.339061 + 28.425468 -79.62983 -50.509119 -81.185552 166.903955 -69.20716 80.157382 -68.339061 + 28.425468"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0100.061.2017171214656.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0100.061.2017171214656.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0100.061.2017171214656.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0100.061.2017272134641.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0150.061.2017171212856.hdf","time_start":"2000-03-02T01:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082524","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T01:55:00.000Z","id":"G1462774860-LAADS","original_format":"ECHO10","granule_size":"56.4556589126587","browse_flag":true,"polygons":[["77.692943 + 120.14643 67.548591 -169.316065 70.216592 -117.503228 83.087843 -21.76406 + 77.692943 120.14643"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0150.061.2017171212856.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0150.061.2017171212856.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0150.061.2017171212856.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0150.061.2017272135022.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0155.061.2017171212915.hdf","time_start":"2000-03-02T01:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082525","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T02:00:00.000Z","id":"G1462774868-LAADS","original_format":"ECHO10","granule_size":"154.768292427063","browse_flag":true,"polygons":[["59.995351 + 124.218879 54.582791 163.418513 67.910862 -169.707907 78.144335 118.080524 + 59.995351 124.218879"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0155.061.2017171212915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0155.061.2017171212915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0155.061.2017171212915.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0155.061.2017272140415.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0200.061.2017171212916.hdf","time_start":"2000-03-02T02:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082828","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T02:05:00.000Z","id":"G1462774946-LAADS","original_format":"ECHO10","granule_size":"161.074681282043","browse_flag":true,"polygons":[["42.192207 + 123.131402 38.431779 150.885367 54.856486 162.86262 60.479982 123.635401 42.192207 + 123.131402"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0200.061.2017171212916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0200.061.2017171212916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0200.061.2017171212916.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0200.061.2017272135915.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0205.061.2017171214107.hdf","time_start":"2000-03-02T02:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083104","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T02:10:00.000Z","id":"G1462775073-LAADS","original_format":"ECHO10","granule_size":"152.986364364624","browse_flag":true,"polygons":[["24.373761 + 120.838012 21.2486 143.648449 38.627893 150.444413 42.620246 122.875 24.373761 + 120.838012"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0205.061.2017171214107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0205.061.2017171214107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0205.061.2017171214107.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0205.061.2017272141011.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0210.061.2017171213310.hdf","time_start":"2000-03-02T02:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082829","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T02:15:00.000Z","id":"G1462774950-LAADS","original_format":"ECHO10","granule_size":"158.140370368958","browse_flag":true,"polygons":[["6.507672 + 117.733901 3.53183 138.690762 21.385573 143.358472 24.699693 120.712523 6.507672 + 117.733901"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0210.061.2017171213310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0210.061.2017171213310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0210.061.2017171213310.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0210.061.2017272141323.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0215.061.2017171212920.hdf","time_start":"2000-03-02T02:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082830","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T02:20:00.000Z","id":"G1462774952-LAADS","original_format":"ECHO10","granule_size":"161.90264415741","browse_flag":true,"polygons":[["-11.177174 + 113.68151 -14.348255 135.016237 3.623364 138.591319 6.703492 117.681384 -11.177174 + 113.68151"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0215.061.2017171212920.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0215.061.2017171212920.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0215.061.2017171212920.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0215.061.2017272141205.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0220.061.2017171212936.hdf","time_start":"2000-03-02T02:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082526","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T02:25:00.000Z","id":"G1462774867-LAADS","original_format":"ECHO10","granule_size":"163.075513839722","browse_flag":true,"polygons":[["-28.649671 + 108.034287 -32.385606 132.339261 -14.247576 135.239641 -11.082905 113.6886 + -28.649671 108.034287"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0220.061.2017171212936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0220.061.2017171212936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0220.061.2017171212936.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0220.061.2017272140334.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0225.061.2017171213709.hdf","time_start":"2000-03-02T02:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083785","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T02:30:00.000Z","id":"G1462775387-LAADS","original_format":"ECHO10","granule_size":"167.399497032166","browse_flag":true,"polygons":[["-45.452257 + 99.090887 -50.368615 130.605629 -32.145017 132.763415 -28.563101 108.065903 + -45.452257 99.090887"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0225.061.2017171213709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0225.061.2017171213709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0225.061.2017171213709.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0225.061.2017272141326.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0230.061.2017171215026.hdf","time_start":"2000-03-02T02:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083786","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T02:35:00.000Z","id":"G1462775398-LAADS","original_format":"ECHO10","granule_size":"162.697818756104","browse_flag":true,"polygons":[["-60.59156 + 82.024477 -68.221668 130.953947 -49.986257 131.209674 -45.405346 99.24674 + -60.59156 82.024477"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0230.061.2017171215026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0230.061.2017171215026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0230.061.2017171215026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0230.061.2017272141542.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0235.061.2017171213727.hdf","time_start":"2000-03-02T02:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083787","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T02:40:00.000Z","id":"G1462775388-LAADS","original_format":"ECHO10","granule_size":"142.226773262024","browse_flag":true,"polygons":[["-70.163762 + 43.822042 -85.411075 155.833002 -67.715048 131.920446 -60.652784 82.437381 + -70.163762 43.822042"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0235.061.2017171213727.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0235.061.2017171213727.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0235.061.2017171213727.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0235.061.2017272135247.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0240.061.2017171213721.hdf","time_start":"2000-03-02T02:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083438","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T02:45:00.000Z","id":"G1462775213-LAADS","original_format":"ECHO10","granule_size":"68.7619132995605","browse_flag":true,"polygons":[["-66.288399 + -5.36571 -75.758809 -71.705217 -84.752107 156.377659 -70.492141 44.263893 + -66.288399 -5.36571"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0240.061.2017171213721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0240.061.2017171213721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0240.061.2017171213721.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0240.061.2017272134734.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0330.061.2017171212915.hdf","time_start":"2000-03-02T03:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082527","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T03:35:00.000Z","id":"G1462774870-LAADS","original_format":"ECHO10","granule_size":"84.7377681732178","browse_flag":true,"polygons":[["73.766065 + 97.622387 65.193837 157.678293 71.113028 -154.234717 86.355854 -20.788211 + 73.766065 97.622387"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0330.061.2017171212915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0330.061.2017171212915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0330.061.2017171212915.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0330.061.2017272134949.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0335.061.2017171214150.hdf","time_start":"2000-03-02T03:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083439","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T03:40:00.000Z","id":"G1462775214-LAADS","original_format":"ECHO10","granule_size":"158.699318885803","browse_flag":true,"polygons":[["56.021787 + 99.425406 51.130354 135.116235 65.546333 157.170293 74.241189 96.192295 56.021787 + 99.425406"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0335.061.2017171214150.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0335.061.2017171214150.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0335.061.2017171214150.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0335.061.2017272135657.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0340.061.2017171212925.hdf","time_start":"2000-03-02T03:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082831","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T03:45:00.000Z","id":"G1462774951-LAADS","original_format":"ECHO10","granule_size":"159.962765693665","browse_flag":true,"polygons":[["38.209441 + 98.062337 34.656449 124.234013 51.386369 134.572381 56.502249 99.077372 38.209441 + 98.062337"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0340.061.2017171212925.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0340.061.2017171212925.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0340.061.2017171212925.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0340.061.2017272140140.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0345.061.2017171212931.hdf","time_start":"2000-03-02T03:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082832","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T03:50:00.000Z","id":"G1462774949-LAADS","original_format":"ECHO10","granule_size":"167.57105922699","browse_flag":true,"polygons":[["20.404453 + 95.501983 17.339116 117.682009 34.833823 123.841206 38.612802 97.761956 20.404453 + 95.501983"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0345.061.2017171212931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0345.061.2017171212931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0345.061.2017171212931.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0345.061.2017272140817.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0350.061.2017171213740.hdf","time_start":"2000-03-02T03:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083440","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T03:55:00.000Z","id":"G1462775215-LAADS","original_format":"ECHO10","granule_size":"164.049603462219","browse_flag":true,"polygons":[["2.642711 + 92.22161 -0.349579 113.08122 17.465462 117.427039 20.696074 95.390823 2.642711 + 92.22161"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0350.061.2017171213740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0350.061.2017171213740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0350.061.2017171213740.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0350.061.2017272140609.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0355.061.2017171213730.hdf","time_start":"2000-03-02T03:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083441","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T04:00:00.000Z","id":"G1462775212-LAADS","original_format":"ECHO10","granule_size":"160.096567153931","browse_flag":true,"polygons":[["-15.111467 + 87.868895 -18.375292 109.631507 -0.271308 113.060412 2.806612 92.177734 -15.111467 + 87.868895"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0355.061.2017171213730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0355.061.2017171213730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0355.061.2017171213730.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0355.061.2017272141045.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0400.061.2017171213744.hdf","time_start":"2000-03-02T04:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083442","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T04:05:00.000Z","id":"G1462775217-LAADS","original_format":"ECHO10","granule_size":"170.736611366272","browse_flag":true,"polygons":[["-32.477823 + 81.699486 -36.407 107.139564 -18.243997 109.896895 -15.020166 87.888862 -32.477823 + 81.699486"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0400.061.2017171213744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0400.061.2017171213744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0400.061.2017171213744.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0400.061.2017272141340.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0405.061.2017171214809.hdf","time_start":"2000-03-02T04:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084436","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T04:10:00.000Z","id":"G1462775633-LAADS","original_format":"ECHO10","granule_size":"157.440457344055","browse_flag":true,"polygons":[["-49.037703 + 71.560108 -54.366897 105.698288 -36.133815 107.609829 -32.394973 81.744886 + -49.037703 71.560108"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0405.061.2017171214809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0405.061.2017171214809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0405.061.2017171214809.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0405.061.2017272141429.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0410.061.2017171214608.hdf","time_start":"2000-03-02T04:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083788","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T04:15:00.000Z","id":"G1462775391-LAADS","original_format":"ECHO10","granule_size":"161.109201431274","browse_flag":true,"polygons":[["-63.470652 + 51.228128 -72.175693 107.110065 -53.955331 106.318977 -49.00789 71.762145 + -63.470652 51.228128"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0410.061.2017171214608.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0410.061.2017171214608.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0410.061.2017171214608.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0410.061.2017272141635.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0415.061.2017171213740.hdf","time_start":"2000-03-02T04:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083443","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T04:20:00.000Z","id":"G1462775221-LAADS","original_format":"ECHO10","granule_size":"138.816146850586","browse_flag":true,"polygons":[["-70.610468 + 7.113103 -87.410853 -169.800627 -71.641763 108.242665 -63.570513 51.708092 + -70.610468 7.113103"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0415.061.2017171213740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0415.061.2017171213740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0415.061.2017171213740.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0415.061.2017272135204.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0420.061.2017171213713.hdf","time_start":"2000-03-02T04:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083789","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T04:25:00.000Z","id":"G1462775390-LAADS","original_format":"ECHO10","granule_size":"43.2593402862549","browse_flag":true,"polygons":[["-63.752256 + -37.553814 -71.848932 -94.752915 -86.982563 179.731871 -70.95667 7.356068 + -63.752256 -37.553814"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0420.061.2017171213713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0420.061.2017171213713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0420.061.2017171213713.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0420.061.2017272134901.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0510.061.2017171213705.hdf","time_start":"2000-03-02T05:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083444","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T05:15:00.000Z","id":"G1462775225-LAADS","original_format":"ECHO10","granule_size":"21.8804750442505","browse_flag":true,"polygons":[["69.848993 + 73.96743 62.476372 126.19047 71.176124 168.440785 86.744201 24.190916 69.848993 + 73.96743"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0510.061.2017171213705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0510.061.2017171213705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0510.061.2017171213705.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0510.061.2017272134704.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0515.061.2017171213753.hdf","time_start":"2000-03-02T05:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083445","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T05:20:00.000Z","id":"G1462775216-LAADS","original_format":"ECHO10","granule_size":"131.520180702209","browse_flag":true,"polygons":[["52.046238 + 74.50346 47.569471 107.358683 62.805582 125.637129 70.335052 72.90938 52.046238 + 74.50346"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0515.061.2017171213753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0515.061.2017171213753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0515.061.2017171213753.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0515.061.2017272140353.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0520.061.2017171213747.hdf","time_start":"2000-03-02T05:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083790","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T05:25:00.000Z","id":"G1462775397-LAADS","original_format":"ECHO10","granule_size":"163.58554649353","browse_flag":true,"polygons":[["34.230695 + 72.780586 30.843604 97.785288 47.812861 106.819542 52.516674 74.134315 34.230695 + 72.780586"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0520.061.2017171213747.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0520.061.2017171213747.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0520.061.2017171213747.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0520.061.2017272140052.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0525.061.2017171213814.hdf","time_start":"2000-03-02T05:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083791","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T05:30:00.000Z","id":"G1462775394-LAADS","original_format":"ECHO10","granule_size":"153.365295410156","browse_flag":true,"polygons":[["16.420021 + 70.110756 13.425477 91.740845 31.021069 97.362529 34.625968 72.580762 16.420021 + 70.110756"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0525.061.2017171213814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0525.061.2017171213814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0525.061.2017171213814.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0525.061.2017272135452.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0530.061.2017171214724.hdf","time_start":"2000-03-02T05:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084086","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T05:35:00.000Z","id":"G1462775532-LAADS","original_format":"ECHO10","granule_size":"151.510814666748","browse_flag":true,"polygons":[["-1.303835 + 66.642382 -4.326471 87.505388 13.528817 91.590758 16.695802 70.024561 -1.303835 + 66.642382"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0530.061.2017171214724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0530.061.2017171214724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0530.061.2017171214724.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0530.061.2017272140338.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0535.061.2017171213800.hdf","time_start":"2000-03-02T05:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083792","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T05:40:00.000Z","id":"G1462775396-LAADS","original_format":"ECHO10","granule_size":"158.178705215454","browse_flag":true,"polygons":[["-18.941138 + 61.997118 -22.313102 84.299875 -4.25771 87.556119 -1.172263 66.612165 -18.941138 + 61.997118"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0535.061.2017171213800.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0535.061.2017171213800.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0535.061.2017171213800.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0535.061.2017272140713.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0540.061.2017171214300.hdf","time_start":"2000-03-02T05:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084437","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T05:45:00.000Z","id":"G1462775630-LAADS","original_format":"ECHO10","granule_size":"153.974108695984","browse_flag":true,"polygons":[["-36.265615 + 55.176415 -40.424482 81.988042 -22.151946 84.613727 -18.851511 62.021425 -36.265615 + 55.176415"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0540.061.2017171214300.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0540.061.2017171214300.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0540.061.2017171214300.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0540.061.2017272140724.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0545.061.2017171214504.hdf","time_start":"2000-03-02T05:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084087","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T05:50:00.000Z","id":"G1462775533-LAADS","original_format":"ECHO10","granule_size":"158.145775794983","browse_flag":true,"polygons":[["-52.527667 + 43.567216 -58.356252 80.910967 -40.118012 82.507801 -36.189886 55.24498 -52.527667 + 43.567216"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0545.061.2017171214504.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0545.061.2017171214504.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0545.061.2017171214504.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0545.061.2017272141539.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0550.061.2017171215536.hdf","time_start":"2000-03-02T05:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085122","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T05:55:00.000Z","id":"G1462775714-LAADS","original_format":"ECHO10","granule_size":"159.609204292297","browse_flag":true,"polygons":[["-66.019007 + 19.136177 -76.104128 84.158908 -57.917191 81.571735 -52.517788 43.820545 -66.019007 + 19.136177"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0550.061.2017171215536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0550.061.2017171215536.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0550.061.2017171215536.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0550.061.2017272140908.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0555.061.2017171215122.hdf","time_start":"2000-03-02T05:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084805","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T06:00:00.000Z","id":"G1462775699-LAADS","original_format":"ECHO10","granule_size":"131.239660263062","browse_flag":true,"polygons":[["-70.240903 + -29.631127 -85.084718 -141.544145 -75.531567 85.68031 -66.166557 19.667861 + -70.240903 -29.631127"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0555.061.2017171215122.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0555.061.2017171215122.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0555.061.2017171215122.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0555.061.2017272135113.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0600.061.2017171214545.hdf","time_start":"2000-03-02T06:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084438","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T06:05:00.000Z","id":"G1462775625-LAADS","original_format":"ECHO10","granule_size":"21.3375425338745","browse_flag":true,"polygons":[["-60.897592 + -68.446655 -67.918009 -118.561004 -85.314163 -148.560923 -70.608208 -29.62311 + -60.897592 -68.446655"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0600.061.2017171214545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0600.061.2017171214545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0600.061.2017171214545.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0600.061.2017272134948.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0645.061.2017171213753.hdf","time_start":"2000-03-02T06:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083446","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T06:50:00.000Z","id":"G1462775218-LAADS","original_format":"ECHO10","granule_size":"24.0903596878052","browse_flag":true,"polygons":[["83.365915 + 36.75242 70.032367 131.698087 67.600173 -176.560226 77.475462 -106.052414 + 83.365915 36.75242"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0645.061.2017171213753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0645.061.2017171213753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0645.061.2017171213753.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0645.061.2017272134917.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0650.061.2017171214703.hdf","time_start":"2000-03-02T06:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084088","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T06:55:00.000Z","id":"G1462775536-LAADS","original_format":"ECHO10","granule_size":"137.998210906982","browse_flag":true,"polygons":[["65.857639 + 49.801846 59.4265 95.821214 70.396827 131.574974 83.706837 31.941284 65.857639 + 49.801846"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0650.061.2017171214703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0650.061.2017171214703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0650.061.2017171214703.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0650.061.2017272135718.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0655.061.2017171213829.hdf","time_start":"2000-03-02T06:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083793","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T07:00:00.000Z","id":"G1462775395-LAADS","original_format":"ECHO10","granule_size":"160.09037399292","browse_flag":true,"polygons":[["48.071832 + 49.498866 43.930779 80.009095 59.734563 95.24688 66.348285 48.982659 48.071832 + 49.498866"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0655.061.2017171213829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0655.061.2017171213829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0655.061.2017171213829.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0655.061.2017272140546.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0700.061.2017171213850.hdf","time_start":"2000-03-02T07:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083794","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T07:05:00.000Z","id":"G1462775410-LAADS","original_format":"ECHO10","granule_size":"160.250224113464","browse_flag":true,"polygons":[["30.254039 + 47.518154 26.990147 71.53074 44.149255 79.524595 48.527223 49.173964 30.254039 + 47.518154"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0700.061.2017171213850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0700.061.2017171213850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0700.061.2017171213850.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0700.061.2017272135939.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0705.061.2017171213854.hdf","time_start":"2000-03-02T07:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083795","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T07:10:00.000Z","id":"G1462775392-LAADS","original_format":"ECHO10","granule_size":"129.094793319702","browse_flag":true,"polygons":[["12.458797 + 44.691521 9.473374 66.012939 27.143059 71.196917 30.620059 47.361406 12.458797 + 44.691521"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0705.061.2017171213854.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0705.061.2017171213854.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0705.061.2017171213854.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0705.061.2017272135033.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0710.061.2017171213835.hdf","time_start":"2000-03-02T07:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083796","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T07:15:00.000Z","id":"G1462775400-LAADS","original_format":"ECHO10","granule_size":"150.664171218872","browse_flag":true,"polygons":[["-5.238845 + 41.009468 -8.308466 61.975026 9.5799 65.833888 12.699633 44.619602 -5.238845 + 41.009468"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0710.061.2017171213835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0710.061.2017171213835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0710.061.2017171213835.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0710.061.2017272140210.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0715.061.2017171214309.hdf","time_start":"2000-03-02T07:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084439","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T07:20:00.000Z","id":"G1462775631-LAADS","original_format":"ECHO10","granule_size":"156.095833778381","browse_flag":true,"polygons":[["-22.836755 + 36.002414 -26.338309 58.990754 -8.247465 62.101216 -5.140009 40.990049 -22.836755 + 36.002414"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0715.061.2017171214309.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0715.061.2017171214309.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0715.061.2017171214309.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0715.061.2017272140801.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0720.061.2017171213844.hdf","time_start":"2000-03-02T07:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083797","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T07:25:00.000Z","id":"G1462775399-LAADS","original_format":"ECHO10","granule_size":"150.968104362488","browse_flag":true,"polygons":[["-39.925064 + 28.475606 -44.346542 56.89657 -26.145216 59.344603 -22.748053 36.029598 -39.925064 + 28.475606"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0720.061.2017171213844.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0720.061.2017171213844.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0720.061.2017171213844.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0720.061.2017272140733.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0725.061.2017171213853.hdf","time_start":"2000-03-02T07:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083447","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T07:30:00.000Z","id":"G1462775219-LAADS","original_format":"ECHO10","granule_size":"166.053809165955","browse_flag":true,"polygons":[["-55.89776 + 14.990754 -62.339542 56.277836 -44.010135 57.472648 -39.859138 28.576581 -55.89776 + 14.990754"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0725.061.2017171213853.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0725.061.2017171213853.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0725.061.2017171213853.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0725.061.2017272142030.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0730.061.2017171214606.hdf","time_start":"2000-03-02T07:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084440","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T07:35:00.000Z","id":"G1462775627-LAADS","original_format":"ECHO10","granule_size":"153.941345214844","browse_flag":true,"polygons":[["-68.129234 + -14.455208 -79.988578 63.04137 -61.872376 56.988315 -55.91281 15.30258 -68.129234 + -14.455208"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0730.061.2017171214606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0730.061.2017171214606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0730.061.2017171214606.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0730.061.2017272140728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0735.061.2017171214544.hdf","time_start":"2000-03-02T07:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084441","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T07:40:00.000Z","id":"G1462775632-LAADS","original_format":"ECHO10","granule_size":"109.68643951416","browse_flag":true,"polygons":[["-69.103351 + -65.530952 -81.467349 -152.428701 -79.376916 64.841213 -68.332586 -13.906922 + -69.103351 -65.530952"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0735.061.2017171214544.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0735.061.2017171214544.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0735.061.2017171214544.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0735.061.2017272134940.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0825.061.2017171213402.hdf","time_start":"2000-03-02T08:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082833","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T08:30:00.000Z","id":"G1462774954-LAADS","original_format":"ECHO10","granule_size":"45.7927703857422","browse_flag":true,"polygons":[["79.553074 + 19.479743 68.502701 96.322909 69.526273 148.893481 81.312981 -125.462663 79.553074 + 19.479743"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0825.061.2017171213402.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0825.061.2017171213402.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0825.061.2017171213402.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0825.061.2017272134916.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0830.061.2017171212940.hdf","time_start":"2000-03-02T08:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082834","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T08:35:00.000Z","id":"G1462774953-LAADS","original_format":"ECHO10","granule_size":"145.768880844116","browse_flag":true,"polygons":[["61.889818 + 25.299831 56.194263 66.45212 68.875126 95.991969 79.984143 16.865146 61.889818 + 25.299831"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0830.061.2017171212940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0830.061.2017171212940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0830.061.2017171212940.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0830.061.2017272140548.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0835.061.2017171212935.hdf","time_start":"2000-03-02T08:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082835","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T08:40:00.000Z","id":"G1462775024-LAADS","original_format":"ECHO10","granule_size":"159.595048904419","browse_flag":true,"polygons":[["44.094733 + 24.433046 40.222289 53.003205 56.470888 65.910025 62.379876 24.657512 44.094733 + 24.433046"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0835.061.2017171212935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0835.061.2017171212935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0835.061.2017171212935.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0835.061.2017272140500.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0840.061.2017171213818.hdf","time_start":"2000-03-02T08:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083448","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T08:45:00.000Z","id":"G1462775220-LAADS","original_format":"ECHO10","granule_size":"160.490907669067","browse_flag":true,"polygons":[["26.278112 + 22.237512 23.110972 45.406776 40.423788 52.553838 44.531146 24.159135 26.278112 + 22.237512"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0840.061.2017171213818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0840.061.2017171213818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0840.061.2017171213818.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0840.061.2017272135921.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0845.061.2017171213636.hdf","time_start":"2000-03-02T08:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082836","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T08:50:00.000Z","id":"G1462775032-LAADS","original_format":"ECHO10","granule_size":"157.54381275177","browse_flag":true,"polygons":[["8.492888 + 19.237997 5.520274 40.277833 23.256884 45.08349 26.616963 22.10786 8.492888 + 19.237997"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0845.061.2017171213636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0845.061.2017171213636.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0845.061.2017171213636.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0845.061.2017272135007.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0850.061.2017171212943.hdf","time_start":"2000-03-02T08:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082528","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T08:55:00.000Z","id":"G1462774872-LAADS","original_format":"ECHO10","granule_size":"156.256014823914","browse_flag":true,"polygons":[["-9.199609 + 15.330666 -12.326054 36.479132 5.616916 40.143833 8.703755 19.194918 -9.199609 + 15.330666"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0850.061.2017171212943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0850.061.2017171212943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0850.061.2017171212943.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0850.061.2017272140029.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0855.061.2017171212923.hdf","time_start":"2000-03-02T08:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082837","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T09:00:00.000Z","id":"G1462775025-LAADS","original_format":"ECHO10","granule_size":"169.147741317749","browse_flag":true,"polygons":[["-26.712555 + 9.892556 -30.36598 33.719275 -12.24323 36.689588 -9.100736 15.307923 -26.712555 + 9.892556"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0855.061.2017171212923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0855.061.2017171212923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0855.061.2017171212923.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0855.061.2017272140354.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0900.061.2017171212928.hdf","time_start":"2000-03-02T09:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082838","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T09:05:00.000Z","id":"G1462775022-LAADS","original_format":"ECHO10","granule_size":"164.380462646484","browse_flag":true,"polygons":[["-43.618813 + 1.468518 -48.356595 31.855497 -30.1404 34.118095 -26.625327 9.92238 -43.618813 + 1.468518"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0900.061.2017171212928.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0900.061.2017171212928.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0900.061.2017171212928.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0900.061.2017272141715.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0905.061.2017171214148.hdf","time_start":"2000-03-02T09:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083105","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T09:10:00.000Z","id":"G1462775071-LAADS","original_format":"ECHO10","granule_size":"165.586400032043","browse_flag":true,"polygons":[["-59.045053 + -14.222666 -66.226251 31.866575 -47.989313 32.476492 -43.564957 1.605111 -59.045053 + -14.222666"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0905.061.2017171214148.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0905.061.2017171214148.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0905.061.2017171214148.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0905.061.2017272142203.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0910.061.2017171212943.hdf","time_start":"2000-03-02T09:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083106","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T09:15:00.000Z","id":"G1462775081-LAADS","original_format":"ECHO10","granule_size":"152.773394584656","browse_flag":true,"polygons":[["-69.668115 + -49.589614 -83.752092 47.173027 -65.735076 32.67502 -59.091721 -13.84485 -69.668115 + -49.589614"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0910.061.2017171212943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0910.061.2017171212943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0910.061.2017171212943.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0910.061.2017272140341.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.0915.061.2017171212926.hdf","time_start":"2000-03-02T09:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082839","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T09:20:00.000Z","id":"G1462775023-LAADS","original_format":"ECHO10","granule_size":"83.7105627059937","browse_flag":true,"polygons":[["-67.308117 + -100.04042 -77.630395 -172.018846 -83.092297 48.866502 -69.929029 -49.100065 + -67.308117 -100.04042"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0915.061.2017171212926.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.0915.061.2017171212926.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.0915.061.2017171212926.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.0915.061.2017272135214.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1005.061.2017171212932.hdf","time_start":"2000-03-02T10:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082840","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T10:10:00.000Z","id":"G1462775026-LAADS","original_format":"ECHO10","granule_size":"77.4019107818604","browse_flag":true,"polygons":[["75.644285 + -2.137367 66.377385 62.548257 70.788146 112.753085 84.918736 -136.077348 75.644285 + -2.137367"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1005.061.2017171212932.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1005.061.2017171212932.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1005.061.2017171212932.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1005.061.2017272135302.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1010.061.2017171213001.hdf","time_start":"2000-03-02T10:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083107","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T10:15:00.000Z","id":"G1462775079-LAADS","original_format":"ECHO10","granule_size":"157.015333175659","browse_flag":true,"polygons":[["57.919708 + 0.579846 52.79138 37.877414 66.727903 62.103612 76.109479 -3.836009 57.919708 + 0.579846"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1010.061.2017171213001.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1010.061.2017171213001.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1010.061.2017171213001.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1010.061.2017272141236.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1015.061.2017171212958.hdf","time_start":"2000-03-02T10:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082841","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T10:20:00.000Z","id":"G1462775028-LAADS","original_format":"ECHO10","granule_size":"165.672358512878","browse_flag":true,"polygons":[["40.113519 + -0.667349 36.464754 26.250588 53.056507 37.325646 58.403898 0.112229 40.113519 + -0.667349"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1015.061.2017171212958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1015.061.2017171212958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1015.061.2017171212958.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1015.061.2017272141326.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1020.061.2017171213456.hdf","time_start":"2000-03-02T10:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083108","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T10:25:00.000Z","id":"G1462775076-LAADS","original_format":"ECHO10","granule_size":"149.479756355286","browse_flag":true,"polygons":[["22.301917 + -3.0846 19.210073 19.386108 36.650496 25.835548 40.529626 -0.928633 22.301917 + -3.0846"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1020.061.2017171213456.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1020.061.2017171213456.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1020.061.2017171213456.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1020.061.2017272135335.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1025.061.2017171213016.hdf","time_start":"2000-03-02T10:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082842","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T10:30:00.000Z","id":"G1462775029-LAADS","original_format":"ECHO10","granule_size":"151.101041793823","browse_flag":true,"polygons":[["4.53429 + -6.274647 1.552366 14.618186 19.343925 19.10168 22.61217 -3.203915 4.53429 + -6.274647"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1025.061.2017171213016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1025.061.2017171213016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1025.061.2017171213016.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1025.061.2017272135426.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1030.061.2017171213836.hdf","time_start":"2000-03-02T10:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083798","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T10:35:00.000Z","id":"G1462775401-LAADS","original_format":"ECHO10","granule_size":"158.807267189026","browse_flag":true,"polygons":[["-13.141227 + -10.462953 -16.357212 11.078258 1.634756 14.567863 4.714527 -6.31983 -13.141227 + -10.462953"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1030.061.2017171213836.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1030.061.2017171213836.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1030.061.2017171213836.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1030.061.2017272141115.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1035.061.2017171213851.hdf","time_start":"2000-03-02T10:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083799","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T10:40:00.000Z","id":"G1462775406-LAADS","original_format":"ECHO10","granule_size":"156.112330436707","browse_flag":true,"polygons":[["-30.563132 + -16.355259 -34.392185 8.490268 -16.242112 11.319996 -13.04954 -10.444424 -30.563132 + -16.355259"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1035.061.2017171213851.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1035.061.2017171213851.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1035.061.2017171213851.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1035.061.2017272140917.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1040.061.2017171213846.hdf","time_start":"2000-03-02T10:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083449","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T10:45:00.000Z","id":"G1462775222-LAADS","original_format":"ECHO10","granule_size":"168.552525520325","browse_flag":true,"polygons":[["-47.24815 + -25.869493 -52.362465 6.893038 -34.134781 8.934997 -30.477063 -16.321736 -47.24815 + -25.869493"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1040.061.2017171213846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1040.061.2017171213846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1040.061.2017171213846.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1040.061.2017272142019.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1045.061.2017171213908.hdf","time_start":"2000-03-02T10:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083800","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T10:50:00.000Z","id":"G1462775405-LAADS","original_format":"ECHO10","granule_size":"165.728180885315","browse_flag":true,"polygons":[["-62.05896 + -44.469082 -70.191378 7.833705 -51.965282 7.573957 -47.209587 -25.691138 -62.05896 + -44.469082"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1045.061.2017171213908.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1045.061.2017171213908.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1045.061.2017171213908.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1045.061.2017272142211.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1050.061.2017171214646.hdf","time_start":"2000-03-02T10:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084442","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T10:55:00.000Z","id":"G1462775628-LAADS","original_format":"ECHO10","granule_size":"149.76992225647","browse_flag":true,"polygons":[["-70.484699 + -85.696683 -86.854707 52.574886 -69.67548 8.728082 -62.142605 -44.026163 -70.484699 + -85.696683"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1050.061.2017171214646.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1050.061.2017171214646.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1050.061.2017171214646.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1050.061.2017272140406.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1055.061.2017171214559.hdf","time_start":"2000-03-02T10:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084443","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T11:00:00.000Z","id":"G1462775683-LAADS","original_format":"ECHO10","granule_size":"57.1541213989258","browse_flag":true,"polygons":[["-64.993415 + -132.995395 -73.726254 165.677989 -86.19436 49.898318 -70.797401 -85.348352 + -64.993415 -132.995395"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1055.061.2017171214559.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1055.061.2017171214559.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1055.061.2017171214559.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1055.061.2017272135146.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1145.061.2017171213829.hdf","time_start":"2000-03-02T11:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083801","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T11:50:00.000Z","id":"G1462775404-LAADS","original_format":"ECHO10","granule_size":"112.079097747803","browse_flag":true,"polygons":[["71.700956 + -25.309816 63.798772 30.344863 71.249317 75.855815 87.176201 -111.737244 71.700956 + -25.309816"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1145.061.2017171213829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1145.061.2017171213829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1145.061.2017171213829.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1145.061.2017272135917.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1150.061.2017171213907.hdf","time_start":"2000-03-02T11:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083802","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T11:55:00.000Z","id":"G1462775402-LAADS","original_format":"ECHO10","granule_size":"160.694197654724","browse_flag":true,"polygons":[["53.944197 + -24.275671 49.276283 9.872677 64.136644 29.813064 72.18349 -26.544006 53.944197 + -24.275671"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1150.061.2017171213907.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1150.061.2017171213907.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1150.061.2017171213907.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1150.061.2017272141720.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1155.061.2017171214852.hdf","time_start":"2000-03-02T11:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084089","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T12:00:00.000Z","id":"G1462775534-LAADS","original_format":"ECHO10","granule_size":"160.073925018311","browse_flag":true,"polygons":[["36.131693 + -25.884015 32.662689 -0.281567 49.522399 9.34302 54.417579 -24.703122 36.131693 + -25.884015"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1155.061.2017171214852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1155.061.2017171214852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1155.061.2017171214852.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1155.061.2017272141142.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1200.061.2017171213901.hdf","time_start":"2000-03-02T12:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084090","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T12:05:00.000Z","id":"G1462775545-LAADS","original_format":"ECHO10","granule_size":"148.542234420776","browse_flag":true,"polygons":[["18.318881 + -28.452089 15.292258 -6.557189 32.840315 -0.688926 36.532164 -26.080037 18.318881 + -28.452089"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1200.061.2017171213901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1200.061.2017171213901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1200.061.2017171213901.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1200.061.2017272140911.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1205.061.2017171214846.hdf","time_start":"2000-03-02T12:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084091","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T12:10:00.000Z","id":"G1462775535-LAADS","original_format":"ECHO10","granule_size":"142.955644607544","browse_flag":true,"polygons":[["0.578887 + -31.827543 -2.426758 -10.984584 15.410401 -6.778852 18.606345 -28.547374 0.578887 + -31.827543"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1205.061.2017171214846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1205.061.2017171214846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1205.061.2017171214846.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1205.061.2017272141418.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1210.061.2017171214218.hdf","time_start":"2000-03-02T12:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084444","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T12:15:00.000Z","id":"G1462775680-LAADS","original_format":"ECHO10","granule_size":"150.062194824219","browse_flag":true,"polygons":[["-17.073484 + -36.315251 -20.391261 -14.294235 -2.354369 -10.964478 0.725822 -31.860995 + -17.073484 -36.315251"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1210.061.2017171214218.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1210.061.2017171214218.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1210.061.2017171214218.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1210.061.2017272140350.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1215.061.2017171213927.hdf","time_start":"2000-03-02T12:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084092","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T12:20:00.000Z","id":"G1462775542-LAADS","original_format":"ECHO10","granule_size":"149.38042640686","browse_flag":true,"polygons":[["-34.377832 + -42.7875 -38.418508 -16.693652 -20.244399 -14.008264 -16.982661 -36.294145 + -34.377832 -42.7875"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1215.061.2017171213927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1215.061.2017171213927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1215.061.2017171213927.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1215.061.2017272140827.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1220.061.2017171213926.hdf","time_start":"2000-03-02T12:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083803","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T12:25:00.000Z","id":"G1462775412-LAADS","original_format":"ECHO10","granule_size":"158.485471725464","browse_flag":true,"polygons":[["-50.797495 + -53.621728 -56.365552 -17.967488 -38.129224 -16.200109 -34.299041 -42.728805 + -50.797495 -53.621728"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1220.061.2017171213926.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1220.061.2017171213926.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1220.061.2017171213926.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1220.061.2017272141608.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1225.061.2017171215452.hdf","time_start":"2000-03-02T12:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085427","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T12:30:00.000Z","id":"G1462775718-LAADS","original_format":"ECHO10","granule_size":"161.427513122559","browse_flag":true,"polygons":[["-64.793777 + -75.895441 -74.141583 -15.582003 -55.938866 -17.232987 -50.777558 -53.394326 + -64.793777 -75.895441"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1225.061.2017171215452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1225.061.2017171215452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1225.061.2017171215452.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1225.061.2017272142138.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1230.061.2017171214821.hdf","time_start":"2000-03-02T12:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085123","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T12:35:00.000Z","id":"G1462775717-LAADS","original_format":"ECHO10","granule_size":"145.101696014404","browse_flag":true,"polygons":[["-70.526314 + -122.573972 -86.629838 102.455386 -73.59983 -14.56282 -64.92032 -75.394644 + -70.526314 -122.573972"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1230.061.2017171214821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1230.061.2017171214821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1230.061.2017171214821.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1230.061.2017272140041.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1235.061.2017171215606.hdf","time_start":"2000-03-02T12:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084806","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T12:40:00.000Z","id":"G1462775708-LAADS","original_format":"ECHO10","granule_size":"30.8436250686646","browse_flag":true,"polygons":[["-62.352255 + -164.395352 -69.888844 142.31061 -86.631521 91.539856 -70.879353 -122.441722 + -62.352255 -164.395352"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1235.061.2017171215606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1235.061.2017171215606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1235.061.2017171215606.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1235.061.2017272135207.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1325.061.2017171213923.hdf","time_start":"2000-03-02T13:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083804","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T13:30:00.000Z","id":"G1462775407-LAADS","original_format":"ECHO10","granule_size":"144.258329391479","browse_flag":true,"polygons":[["67.832279 + -49.241973 60.96162 -0.409453 70.883412 38.618042 85.410336 -77.497157 67.832279 + -49.241973"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1325.061.2017171213923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1325.061.2017171213923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1325.061.2017171213923.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1325.061.2017272140130.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1330.061.2017171213922.hdf","time_start":"2000-03-02T13:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083805","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T13:35:00.000Z","id":"G1462775411-LAADS","original_format":"ECHO10","granule_size":"162.130908966064","browse_flag":true,"polygons":[["49.964165 + -49.236286 45.667431 -17.662943 61.277551 -0.9695 68.316604 -50.231081 49.964165 + -49.236286"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1330.061.2017171213922.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1330.061.2017171213922.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1330.061.2017171213922.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1330.061.2017272142232.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1335.061.2017171213909.hdf","time_start":"2000-03-02T13:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084093","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T13:40:00.000Z","id":"G1462775539-LAADS","original_format":"ECHO10","granule_size":"159.248115539551","browse_flag":true,"polygons":[["32.147533 + -51.110165 28.822038 -26.628574 45.895128 -18.162754 50.424556 -49.592488 + 32.147533 -51.110165"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1335.061.2017171213909.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1335.061.2017171213909.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1335.061.2017171213909.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1335.061.2017272141805.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1340.061.2017171214758.hdf","time_start":"2000-03-02T13:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084445","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T13:45:00.000Z","id":"G1462775682-LAADS","original_format":"ECHO10","granule_size":"148.912893295288","browse_flag":true,"polygons":[["14.344066 + -53.852311 11.347584 -32.370601 28.982087 -26.983916 32.522622 -51.27631 14.344066 + -53.852311"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1340.061.2017171214758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1340.061.2017171214758.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1340.061.2017171214758.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1340.061.2017272141214.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1345.061.2017171214653.hdf","time_start":"2000-03-02T13:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084446","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T13:50:00.000Z","id":"G1462775681-LAADS","original_format":"ECHO10","granule_size":"162.816327095032","browse_flag":true,"polygons":[["-3.369988 + -57.431377 -6.414514 -36.536602 11.459708 -32.573519 14.599369 -53.931121 + -3.369988 -57.431377"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1345.061.2017171214653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1345.061.2017171214653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1345.061.2017171214653.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1345.061.2017272141323.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1350.061.2017171215244.hdf","time_start":"2000-03-02T13:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084447","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T13:55:00.000Z","id":"G1462775679-LAADS","original_format":"ECHO10","granule_size":"171.936890602112","browse_flag":true,"polygons":[["-20.991912 + -62.252056 -24.425893 -39.625399 -6.350966 -36.445676 -3.257065 -57.447281 + -20.991912 -62.252056"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1350.061.2017171215244.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1350.061.2017171215244.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1350.061.2017171215244.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1350.061.2017272141137.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1355.061.2017171214606.hdf","time_start":"2000-03-02T13:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084094","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T14:00:00.000Z","id":"G1462775544-LAADS","original_format":"ECHO10","granule_size":"168.327017784119","browse_flag":true,"polygons":[["-38.157013 + -69.409732 -42.443139 -41.823426 -24.248449 -39.2937 -20.902781 -62.228729 + -38.157013 -69.409732"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1355.061.2017171214606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1355.061.2017171214606.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1355.061.2017171214606.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1355.061.2017272141353.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1400.061.2017171214006.hdf","time_start":"2000-03-02T14:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083806","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T14:05:00.000Z","id":"G1462775403-LAADS","original_format":"ECHO10","granule_size":"156.95911026001","browse_flag":true,"polygons":[["-54.2514 + -81.872042 -60.363828 -42.685598 -42.121573 -41.278793 -38.091809 -69.313707 + -54.2514 -81.872042"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1400.061.2017171214006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1400.061.2017171214006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1400.061.2017171214006.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1400.061.2017272141120.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1405.061.2017171214632.hdf","time_start":"2000-03-02T14:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084448","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T14:10:00.000Z","id":"G1462775691-LAADS","original_format":"ECHO10","granule_size":"161.623167991638","browse_flag":true,"polygons":[["-67.146807 + -108.740878 -78.057491 -37.664794 -59.906725 -41.861129 -54.244743 -81.613867 + -67.146807 -108.740878"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1405.061.2017171214632.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1405.061.2017171214632.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1405.061.2017171214632.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1405.061.2017272142003.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1410.061.2017171214612.hdf","time_start":"2000-03-02T14:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084449","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T14:15:00.000Z","id":"G1462775687-LAADS","original_format":"ECHO10","granule_size":"129.420930862427","browse_flag":true,"polygons":[["-69.758508 + -159.024078 -83.330717 104.298951 -77.49136 -36.602519 -67.3243 -108.211479 + -69.758508 -159.024078"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1410.061.2017171214612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1410.061.2017171214612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1410.061.2017171214612.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1410.061.2017272135719.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1500.061.2017171213902.hdf","time_start":"2000-03-02T15:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084095","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T15:05:00.000Z","id":"G1462775546-LAADS","original_format":"ECHO10","granule_size":"38.5567398071289","browse_flag":true,"polygons":[["81.471872 + -82.190206 69.343296 2.5528 68.637082 55.102487 79.418279 132.452596 81.471872 + -82.190206"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1500.061.2017171213902.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1500.061.2017171213902.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1500.061.2017171213902.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1500.061.2017272135334.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1505.061.2017171213922.hdf","time_start":"2000-03-02T15:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083807","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T15:10:00.000Z","id":"G1462775409-LAADS","original_format":"ECHO10","granule_size":"143.872985839844","browse_flag":true,"polygons":[["63.867856 + -73.670363 57.821 -30.216204 69.710777 2.323728 81.863776 -85.66414 63.867856 + -73.670363"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1505.061.2017171213922.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1505.061.2017171213922.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1505.061.2017171213922.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1505.061.2017272140233.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1510.061.2017171213948.hdf","time_start":"2000-03-02T15:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084096","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T15:15:00.000Z","id":"G1462775538-LAADS","original_format":"ECHO10","granule_size":"159.394256591797","browse_flag":true,"polygons":[["46.073925 + -74.260328 42.073975 -44.780672 58.116316 -30.784691 64.356875 -74.364612 + 46.073925 -74.260328"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1510.061.2017171213948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1510.061.2017171213948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1510.061.2017171213948.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1510.061.2017272141844.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1515.061.2017171214958.hdf","time_start":"2000-03-02T15:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084450","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T15:20:00.000Z","id":"G1462775689-LAADS","original_format":"ECHO10","granule_size":"159.848620414734","browse_flag":true,"polygons":[["28.167565 + -76.378035 24.95754 -52.826129 42.284242 -45.248327 46.518437 -74.57927 28.167565 + -76.378035"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1515.061.2017171214958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1515.061.2017171214958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1515.061.2017171214958.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1515.061.2017272141324.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1520.061.2017171213943.hdf","time_start":"2000-03-02T15:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084097","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T15:25:00.000Z","id":"G1462775541-LAADS","original_format":"ECHO10","granule_size":"147.821069717407","browse_flag":true,"polygons":[["10.376279 + -79.29311 7.398468 -58.126368 25.105507 -53.148631 28.518398 -76.518993 10.376279 + -79.29311"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1520.061.2017171213943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1520.061.2017171213943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1520.061.2017171213943.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1520.061.2017272141406.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1525.061.2017171213953.hdf","time_start":"2000-03-02T15:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084098","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T15:30:00.000Z","id":"G1462775547-LAADS","original_format":"ECHO10","granule_size":"170.118805885315","browse_flag":true,"polygons":[["-7.31924 + -83.099854 -10.418365 -62.048966 7.501995 -58.294665 10.601741 -79.359401 + -7.31924 -83.099854"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1525.061.2017171213953.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1525.061.2017171213953.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1525.061.2017171213953.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1525.061.2017272141418.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1530.061.2017171213931.hdf","time_start":"2000-03-02T15:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084099","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T15:35:00.000Z","id":"G1462775550-LAADS","original_format":"ECHO10","granule_size":"168.076507568359","browse_flag":true,"polygons":[["-24.878602 + -88.312545 -28.453912 -64.923819 -10.344465 -61.885935 -7.222319 -83.107716 + -24.878602 -88.312545"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1530.061.2017171213931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1530.061.2017171213931.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1530.061.2017171213931.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1530.061.2017272141514.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1535.061.2017171213927.hdf","time_start":"2000-03-02T15:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084100","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T15:40:00.000Z","id":"G1462775548-LAADS","original_format":"ECHO10","granule_size":"156.035930633545","browse_flag":true,"polygons":[["-41.87623 + -96.291408 -46.454674 -66.892103 -28.244905 -64.537176 -24.788761 -88.285647 + -41.87623 -96.291408"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1535.061.2017171213927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1535.061.2017171213927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1535.061.2017171213927.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1535.061.2017272141129.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1540.061.2017171214749.hdf","time_start":"2000-03-02T15:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084101","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T15:45:00.000Z","id":"G1462775543-LAADS","original_format":"ECHO10","granule_size":"163.040942192078","browse_flag":true,"polygons":[["-57.544468 + -110.82389 -64.343047 -67.204479 -46.102989 -66.292888 -41.817156 -96.171007 + -57.544468 -110.82389"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1540.061.2017171214749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1540.061.2017171214749.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1540.061.2017171214749.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1540.061.2017272141728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1545.061.2017171215800.hdf","time_start":"2000-03-02T15:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084807","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T15:50:00.000Z","id":"G1462775709-LAADS","original_format":"ECHO10","granule_size":"160.035256385803","browse_flag":true,"polygons":[["-68.988655 + -143.125369 -81.89173 -56.735746 -63.859717 -66.297965 -57.573332 -110.481655 + -68.988655 -143.125369"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1545.061.2017171215800.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1545.061.2017171215800.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1545.061.2017171215800.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1545.061.2017272141559.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1550.061.2017171214640.hdf","time_start":"2000-03-02T15:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084451","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T15:55:00.000Z","id":"G1462775686-LAADS","original_format":"ECHO10","granule_size":"99.8159341812134","browse_flag":true,"polygons":[["-68.273495 + 165.729708 -79.557909 87.485022 -81.300977 -55.815936 -69.222584 -142.614193 + -68.273495 165.729708"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1550.061.2017171214640.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1550.061.2017171214640.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1550.061.2017171214640.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1550.061.2017272135309.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1640.061.2017171213927.hdf","time_start":"2000-03-02T16:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084102","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T16:45:00.000Z","id":"G1462775565-LAADS","original_format":"ECHO10","granule_size":"60.1810760498047","browse_flag":true,"polygons":[["77.599723 + -102.310507 67.500208 -32.020682 70.248289 19.736474 83.170228 116.114122 + 77.599723 -102.310507"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1640.061.2017171213927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1640.061.2017171213927.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1640.061.2017171213927.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1640.061.2017272135334.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1645.061.2017171214627.hdf","time_start":"2000-03-02T16:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084103","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T16:50:00.000Z","id":"G1462775551-LAADS","original_format":"ECHO10","granule_size":"151.050680160522","browse_flag":true,"polygons":[["59.902644 + -98.285915 54.503201 -59.157485 67.859109 -32.410206 78.051791 -104.353403 + 59.902644 -98.285915"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1645.061.2017171214627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1645.061.2017171214627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1645.061.2017171214627.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1645.061.2017272140548.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1650.061.2017171214005.hdf","time_start":"2000-03-02T16:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083808","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T16:55:00.000Z","id":"G1462775408-LAADS","original_format":"ECHO10","granule_size":"161.710631370544","browse_flag":true,"polygons":[["42.101023 + -99.362401 38.347059 -71.652854 54.77874 -59.719029 60.388918 -98.843257 42.101023 + -99.362401"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1650.061.2017171214005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1650.061.2017171214005.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1650.061.2017171214005.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1650.061.2017272140906.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1655.061.2017171213948.hdf","time_start":"2000-03-02T16:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084104","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T17:00:00.000Z","id":"G1462775549-LAADS","original_format":"ECHO10","granule_size":"148.996041297913","browse_flag":true,"polygons":[["24.282387 + -101.624175 21.160082 -78.866354 38.540882 -72.086428 42.526401 -99.572557 + 24.282387 -101.624175"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1655.061.2017171213948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1655.061.2017171213948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1655.061.2017171213948.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1655.061.2017272140401.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1700.061.2017171214029.hdf","time_start":"2000-03-02T17:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084105","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T17:05:00.000Z","id":"G1462775552-LAADS","original_format":"ECHO10","granule_size":"146.047032356262","browse_flag":true,"polygons":[["6.424685 + -104.777227 3.444343 -83.817535 21.297525 -79.157943 24.605304 -101.796744 + 6.424685 -104.777227"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1700.061.2017171214029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1700.061.2017171214029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1700.061.2017171214029.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1700.061.2017272140500.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1705.061.2017171214013.hdf","time_start":"2000-03-02T17:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084106","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T17:10:00.000Z","id":"G1462775558-LAADS","original_format":"ECHO10","granule_size":"159.605155944824","browse_flag":true,"polygons":[["-11.26365 + -108.835897 -14.436838 -87.486845 3.535045 -83.916533 6.615219 -104.830532 + -11.26365 -108.835897"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1705.061.2017171214013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1705.061.2017171214013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1705.061.2017171214013.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1705.061.2017272140642.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1710.061.2017171214024.hdf","time_start":"2000-03-02T17:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084107","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T17:15:00.000Z","id":"G1462775563-LAADS","original_format":"ECHO10","granule_size":"154.231719017029","browse_flag":true,"polygons":[["-28.73503 + -114.488959 -32.474009 -90.159266 -14.33545 -87.263244 -11.170793 -108.824695 + -28.73503 -114.488959"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1710.061.2017171214024.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1710.061.2017171214024.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1710.061.2017171214024.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1710.061.2017272141230.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1715.061.2017171214016.hdf","time_start":"2000-03-02T17:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083809","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T17:20:00.000Z","id":"G1462775413-LAADS","original_format":"ECHO10","granule_size":"159.345664978027","browse_flag":true,"polygons":[["-45.5316 + -123.458094 -50.455985 -91.889821 -32.231983 -89.737481 -28.647231 -114.459386 + -45.5316 -123.458094"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1715.061.2017171214016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1715.061.2017171214016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1715.061.2017171214016.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1715.061.2017272141735.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1720.061.2017171213950.hdf","time_start":"2000-03-02T17:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084108","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T17:25:00.000Z","id":"G1462775562-LAADS","original_format":"ECHO10","granule_size":"165.034054756165","browse_flag":true,"polygons":[["-60.659618 + -140.583034 -68.30598 -91.430798 -50.072784 -91.233413 -45.486459 -123.297494 + -60.659618 -140.583034"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1720.061.2017171213950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1720.061.2017171213950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1720.061.2017171213950.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1720.061.2017272142337.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1725.061.2017171214627.hdf","time_start":"2000-03-02T17:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084452","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T17:30:00.000Z","id":"G1462775697-LAADS","original_format":"ECHO10","granule_size":"156.460366249084","browse_flag":true,"polygons":[["-70.183011 + -178.927724 -85.472023 -65.753284 -67.79806 -90.487774 -60.72196 -140.176273 + -70.183011 -178.927724"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1725.061.2017171214627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1725.061.2017171214627.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1725.061.2017171214627.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1725.061.2017272140747.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1730.061.2017171214620.hdf","time_start":"2000-03-02T17:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084453","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T17:35:00.000Z","id":"G1462775685-LAADS","original_format":"ECHO10","granule_size":"70.81019115448","browse_flag":true,"polygons":[["-66.205367 + 132.021939 -75.68024 65.972517 -84.841406 -65.846473 -70.472422 -178.511761 + -66.205367 132.021939"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1730.061.2017171214620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1730.061.2017171214620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1730.061.2017171214620.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1730.061.2017272135345.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1820.061.2017171214614.hdf","time_start":"2000-03-02T18:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084454","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T18:25:00.000Z","id":"G1462775684-LAADS","original_format":"ECHO10","granule_size":"91.0987501144409","browse_flag":true,"polygons":[["73.678405 + -124.878453 65.137946 -64.976474 71.123446 -16.999282 86.401542 117.890652 + 73.678405 -124.878453"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1820.061.2017171214614.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1820.061.2017171214614.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1820.061.2017171214614.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1820.061.2017272135525.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1825.061.2017171214621.hdf","time_start":"2000-03-02T18:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084808","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T18:30:00.000Z","id":"G1462775712-LAADS","original_format":"ECHO10","granule_size":"154.745373725891","browse_flag":true,"polygons":[["55.936991 + -123.047041 51.049431 -87.429381 65.481388 -65.467173 74.157188 -126.211377 + 55.936991 -123.047041"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1825.061.2017171214621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1825.061.2017171214621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1825.061.2017171214621.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1825.061.2017272140759.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1830.061.2017171214008.hdf","time_start":"2000-03-02T18:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084109","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T18:35:00.000Z","id":"G1462775556-LAADS","original_format":"ECHO10","granule_size":"163.560437202454","browse_flag":true,"polygons":[["38.129521 + -124.537685 34.573314 -98.285743 51.306787 -87.976723 56.412392 -123.556302 + 38.129521 -124.537685"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1830.061.2017171214008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1830.061.2017171214008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1830.061.2017171214008.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1830.061.2017272140529.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1835.061.2017171213945.hdf","time_start":"2000-03-02T18:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084110","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T18:40:00.000Z","id":"G1462775555-LAADS","original_format":"ECHO10","granule_size":"157.413256645203","browse_flag":true,"polygons":[["20.312948 + -127.013453 17.257361 -104.840196 34.754031 -98.69426 38.536955 -124.748542 + 20.312948 -127.013453"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1835.061.2017171213945.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1835.061.2017171213945.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1835.061.2017171213945.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1835.061.2017272140707.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1840.061.2017171214948.hdf","time_start":"2000-03-02T18:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084455","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T18:45:00.000Z","id":"G1462775690-LAADS","original_format":"ECHO10","granule_size":"158.876438140869","browse_flag":true,"polygons":[["2.558662 + -130.289457 -0.433292 -109.428893 17.382623 -105.089557 20.612203 -127.116118 + 2.558662 -130.289457"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1840.061.2017171214948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1840.061.2017171214948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1840.061.2017171214948.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1840.061.2017272141517.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1845.061.2017171214033.hdf","time_start":"2000-03-02T18:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084111","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T18:50:00.000Z","id":"G1462775557-LAADS","original_format":"ECHO10","granule_size":"156.649127960205","browse_flag":true,"polygons":[["-15.19416 + -134.647125 -18.460092 -112.876984 -0.354871 -109.451612 2.721817 -130.332063 + -15.19416 -134.647125"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1845.061.2017171214033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1845.061.2017171214033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1845.061.2017171214033.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1845.061.2017272140952.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1850.061.2017171214033.hdf","time_start":"2000-03-02T18:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083810","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T18:55:00.000Z","id":"G1462775418-LAADS","original_format":"ECHO10","granule_size":"151.256974220276","browse_flag":true,"polygons":[["-32.55934 + -140.826711 -36.492436 -115.364002 -18.328297 -112.609248 -15.103648 -134.624844 + -32.55934 -140.826711"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1850.061.2017171214033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1850.061.2017171214033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1850.061.2017171214033.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1850.061.2017272141156.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1855.061.2017171214019.hdf","time_start":"2000-03-02T18:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083811","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T19:00:00.000Z","id":"G1462775415-LAADS","original_format":"ECHO10","granule_size":"153.378980636597","browse_flag":true,"polygons":[["-49.113242 + -150.996321 -54.451786 -116.802294 -36.218127 -114.895569 -32.475714 -140.783099 + -49.113242 -150.996321"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1855.061.2017171214019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1855.061.2017171214019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1855.061.2017171214019.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1855.061.2017272141814.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1900.061.2017171213020.hdf","time_start":"2000-03-02T19:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083109","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T19:05:00.000Z","id":"G1462775077-LAADS","original_format":"ECHO10","granule_size":"161.646564483643","browse_flag":true,"polygons":[["-63.530635 + -171.405507 -72.254925 -115.17597 -54.038651 -116.082182 -49.084665 -150.791136 + -63.530635 -171.405507"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1900.061.2017171213020.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1900.061.2017171213020.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1900.061.2017171213020.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1900.061.2017272142410.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1905.061.2017171213002.hdf","time_start":"2000-03-02T19:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082843","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T19:10:00.000Z","id":"G1462775031-LAADS","original_format":"ECHO10","granule_size":"151.834728240967","browse_flag":true,"polygons":[["-70.611386 + 144.360944 -87.392789 -30.343245 -71.723793 -114.186684 -63.633649 -170.935783 + -70.611386 144.360944"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1905.061.2017171213002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1905.061.2017171213002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1905.061.2017171213002.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1905.061.2017272140558.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.1910.061.2017171212941.hdf","time_start":"2000-03-02T19:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082844","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T19:15:00.000Z","id":"G1462775030-LAADS","original_format":"ECHO10","granule_size":"40.4332818984985","browse_flag":true,"polygons":[["-63.715807 + 99.754469 -71.766786 42.953746 -87.045108 -41.307351 -70.989601 144.590937 + -63.715807 99.754469"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1910.061.2017171212941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.1910.061.2017171212941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.1910.061.2017171212941.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.1910.061.2017272135206.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2000.061.2017171213514.hdf","time_start":"2000-03-02T20:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083450","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T20:05:00.000Z","id":"G1462775223-LAADS","original_format":"ECHO10","granule_size":"117.445971488953","browse_flag":true,"polygons":[["69.731337 + -148.502603 62.389366 -96.483418 71.166883 -54.321735 86.698739 162.939906 + 69.731337 -148.502603"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2000.061.2017171213514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2000.061.2017171213514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2000.061.2017171213514.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2000.061.2017272135917.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2005.061.2017171214744.hdf","time_start":"2000-03-02T20:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084456","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T20:10:00.000Z","id":"G1462775692-LAADS","original_format":"ECHO10","granule_size":"162.822219848633","browse_flag":true,"polygons":[["51.962254 + -147.993891 47.490196 -115.18871 62.715266 -97.031159 70.218071 -149.54274 + 51.962254 -147.993891"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2005.061.2017171214744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2005.061.2017171214744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2005.061.2017171214744.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2005.061.2017272141332.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2010.061.2017171215237.hdf","time_start":"2000-03-02T20:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084112","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T20:15:00.000Z","id":"G1462775554-LAADS","original_format":"ECHO10","granule_size":"150.618378639221","browse_flag":true,"polygons":[["34.948142 + -149.639785 31.521947 -124.423447 47.734418 -115.730257 52.432593 -148.30945 + 34.948142 -149.639785"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2010.061.2017171215237.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2010.061.2017171215237.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2010.061.2017171215237.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2010.061.2017272141907.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2015.061.2017171214048.hdf","time_start":"2000-03-02T20:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084113","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T20:20:00.000Z","id":"G1462775559-LAADS","original_format":"ECHO10","granule_size":"86.9395589828491","browse_flag":true,"polygons":[["16.426152 + -152.478704 13.331903 -130.736878 23.397575 -127.905831 26.752962 -150.768715 + 16.426152 -152.478704"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2015.061.2017171214048.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2015.061.2017171214048.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2015.061.2017171214048.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2015.061.2017272140237.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2020.061.2017171214120.hdf","time_start":"2000-03-02T20:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084457","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T20:25:00.000Z","id":"G1462775696-LAADS","original_format":"ECHO10","granule_size":"146.859580993652","browse_flag":true,"polygons":[["-1.389934 + -155.866951 -4.412794 -135.010573 13.444457 -130.930187 16.609524 -152.479339 + -1.389934 -155.866951"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2020.061.2017171214120.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2020.061.2017171214120.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2020.061.2017171214120.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2020.061.2017272140607.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2025.061.2017171214037.hdf","time_start":"2000-03-02T20:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084114","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T20:30:00.000Z","id":"G1462775561-LAADS","original_format":"ECHO10","granule_size":"155.859840393066","browse_flag":true,"polygons":[["-19.028264 + -160.518244 -22.401664 -138.212534 -4.344321 -134.958815 -1.259769 -155.895153 + -19.028264 -160.518244"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2025.061.2017171214037.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2025.061.2017171214037.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2025.061.2017171214037.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2025.061.2017272141154.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2030.061.2017171214039.hdf","time_start":"2000-03-02T20:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084115","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T20:35:00.000Z","id":"G1462775560-LAADS","original_format":"ECHO10","granule_size":"150.106015205383","browse_flag":true,"polygons":[["-36.350525 + -167.357572 -40.514852 -140.521206 -22.240241 -137.896989 -18.937805 -160.495999 + -36.350525 -167.357572"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2030.061.2017171214039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2030.061.2017171214039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2030.061.2017171214039.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2030.061.2017272141110.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2035.061.2017171214756.hdf","time_start":"2000-03-02T20:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084116","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T20:40:00.000Z","id":"G1462775564-LAADS","original_format":"ECHO10","granule_size":"163.843086242676","browse_flag":true,"polygons":[["-52.606438 + -179.00385 -58.446983 -141.595663 -40.207396 -140.002482 -36.274881 -167.287896 + -52.606438 -179.00385"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2035.061.2017171214756.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2035.061.2017171214756.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2035.061.2017171214756.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2035.061.2017272142348.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2040.061.2017171214042.hdf","time_start":"2000-03-02T20:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084117","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T20:45:00.000Z","id":"G1462775570-LAADS","original_format":"ECHO10","granule_size":"162.474555015564","browse_flag":true,"polygons":[["-66.075602 + 156.4598 -76.188937 -138.123404 -58.005972 -140.849988 -52.59807 -178.747935 + -66.075602 156.4598"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2040.061.2017171214042.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2040.061.2017171214042.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2040.061.2017171214042.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2040.061.2017272142500.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2045.061.2017171214026.hdf","time_start":"2000-03-02T20:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084118","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T20:50:00.000Z","id":"G1462775567-LAADS","original_format":"ECHO10","granule_size":"136.859287261963","browse_flag":true,"polygons":[["-70.223817 + 107.606906 -85.03102 -2.99089 -75.629419 -136.944749 -66.224694 156.980717 + -70.223817 107.606906"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2045.061.2017171214026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2045.061.2017171214026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2045.061.2017171214026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2045.061.2017272140037.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2050.061.2017171213949.hdf","time_start":"2000-03-02T20:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084119","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T20:55:00.000Z","id":"G1462775569-LAADS","original_format":"ECHO10","granule_size":"19.7160873413086","browse_flag":true,"polygons":[["-60.8633 + 68.838072 -67.824981 18.970072 -85.246492 -10.328592 -70.64514 107.569063 + -60.8633 68.838072"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2050.061.2017171213949.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2050.061.2017171213949.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2050.061.2017171213949.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2050.061.2017272135228.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2135.061.2017171213008.hdf","time_start":"2000-03-02T21:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082845","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T21:40:00.000Z","id":"G1462775033-LAADS","original_format":"ECHO10","granule_size":"25.6017580032349","browse_flag":true,"polygons":[["83.279899 + 174.56893 70.046796 -91.09163 67.685958 -39.193858 77.55872 31.50991 83.279899 + 174.56893"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2135.061.2017171213008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2135.061.2017171213008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2135.061.2017171213008.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2135.061.2017272135318.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2140.061.2017171213042.hdf","time_start":"2000-03-02T21:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083110","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T21:45:00.000Z","id":"G1462775075-LAADS","original_format":"ECHO10","granule_size":"139.497827529907","browse_flag":true,"polygons":[["65.769705 + -172.673141 59.35402 -126.782187 70.367211 -91.175853 83.629338 169.833233 + 65.769705 -172.673141"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2140.061.2017171213042.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2140.061.2017171213042.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2140.061.2017171213042.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2140.061.2017272140055.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2145.061.2017171213038.hdf","time_start":"2000-03-02T21:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083111","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T21:50:00.000Z","id":"G1462775074-LAADS","original_format":"ECHO10","granule_size":"161.35608959198","browse_flag":true,"polygons":[["47.981481 + -172.992678 43.848667 -142.545783 59.66573 -127.367663 66.260349 -173.482168 + 47.981481 -172.992678"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2145.061.2017171213038.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2145.061.2017171213038.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2145.061.2017171213038.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2145.061.2017272141808.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2150.061.2017171213045.hdf","time_start":"2000-03-02T21:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082846","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T21:55:00.000Z","id":"G1462775027-LAADS","original_format":"ECHO10","granule_size":"153.33364200592","browse_flag":true,"polygons":[["30.164953 + -174.982169 26.899778 -150.990419 44.06297 -143.015079 48.436033 -173.31672 + 30.164953 -174.982169"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2150.061.2017171213045.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2150.061.2017171213045.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2150.061.2017171213045.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2150.061.2017272141742.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2155.061.2017171213034.hdf","time_start":"2000-03-02T21:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082847","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T22:00:00.000Z","id":"G1462775039-LAADS","original_format":"ECHO10","granule_size":"135.966698646545","browse_flag":true,"polygons":[["12.365977 + -177.810804 9.380722 -156.50431 27.053547 -151.329205 30.5275 -175.134624 + 12.365977 -177.810804"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2155.061.2017171213034.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2155.061.2017171213034.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2155.061.2017171213034.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2155.061.2017272140435.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2200.061.2017171213040.hdf","time_start":"2000-03-02T22:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082848","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T22:05:00.000Z","id":"G1462775036-LAADS","original_format":"ECHO10","granule_size":"147.26357460022","browse_flag":true,"polygons":[["-5.333425 + 178.499835 -8.402991 -160.54615 9.488671 -156.691304 12.606321 -177.88326 + -5.333425 178.499835"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2200.061.2017171213040.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2200.061.2017171213040.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2200.061.2017171213040.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2200.061.2017272140257.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2205.061.2017171213046.hdf","time_start":"2000-03-02T22:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083112","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T22:10:00.000Z","id":"G1462775083-LAADS","original_format":"ECHO10","granule_size":"157.275941848755","browse_flag":true,"polygons":[["-22.932717 + 173.485362 -26.436012 -163.524443 -8.342302 -160.415612 -5.235546 178.483398 + -22.932717 173.485362"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2205.061.2017171213046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2205.061.2017171213046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2205.061.2017171213046.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2205.061.2017272140900.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2210.061.2017171213006.hdf","time_start":"2000-03-02T22:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082849","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T22:15:00.000Z","id":"G1462775034-LAADS","original_format":"ECHO10","granule_size":"48.3518590927124","browse_flag":true,"polygons":[["-28.624876 + 171.275679 -32.280831 -164.214183 -26.221063 -163.492631 -22.843524 173.510099 + -28.624876 171.275679"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2210.061.2017171213006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2210.061.2017171213006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2210.061.2017171213006.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2210.061.2017272135612.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2315.061.2017171213617.hdf","time_start":"2000-03-02T23:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083113","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-02T23:20:00.000Z","id":"G1462775078-LAADS","original_format":"ECHO10","granule_size":"45.6265707015991","browse_flag":true,"polygons":[["79.461576 + 157.10717 68.459757 -126.405987 69.565495 -73.850486 81.402703 12.212611 79.461576 + 157.10717"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2315.061.2017171213617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2315.061.2017171213617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2315.061.2017171213617.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2315.061.2017272135320.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2320.061.2017171213817.hdf","time_start":"2000-03-02T23:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083114","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T23:25:00.000Z","id":"G1462775082-LAADS","original_format":"ECHO10","granule_size":"149.022514343262","browse_flag":true,"polygons":[["61.79768 + 162.825449 56.110193 -156.127826 68.823067 -126.725759 79.894727 154.555803 + 61.79768 162.825449"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2320.061.2017171213817.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2320.061.2017171213817.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2320.061.2017171213817.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2320.061.2017272140641.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2325.061.2017171213058.hdf","time_start":"2000-03-02T23:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083115","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T23:30:00.000Z","id":"G1462775080-LAADS","original_format":"ECHO10","granule_size":"161.529850006104","browse_flag":true,"polygons":[["43.999384 + 161.93659 40.132221 -169.543178 56.391276 -156.684535 62.285182 162.180483 + 43.999384 161.93659"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2325.061.2017171213058.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2325.061.2017171213058.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2325.061.2017171213058.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2325.061.2017272142425.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2330.061.2017171213102.hdf","time_start":"2000-03-02T23:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083116","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T23:35:00.000Z","id":"G1462775084-LAADS","original_format":"ECHO10","granule_size":"157.105237007141","browse_flag":true,"polygons":[["26.179675 + 159.733509 23.016338 -177.12595 40.335132 -169.997674 44.435418 161.66268 + 26.179675 159.733509"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2330.061.2017171213102.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2330.061.2017171213102.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2330.061.2017171213102.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2330.061.2017272141203.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2335.061.2017171213049.hdf","time_start":"2000-03-02T23:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083117","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T23:40:00.000Z","id":"G1462775085-LAADS","original_format":"ECHO10","granule_size":"147.724823951721","browse_flag":true,"polygons":[["8.394372 + 156.728255 5.418896 177.769811 23.158479 -177.431881 26.517183 159.603649 + 8.394372 156.728255"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2335.061.2017171213049.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2335.061.2017171213049.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2335.061.2017171213049.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2335.061.2017272141019.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2340.061.2017171213059.hdf","time_start":"2000-03-02T23:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083118","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T23:45:00.000Z","id":"G1462775088-LAADS","original_format":"ECHO10","granule_size":"154.369421005249","browse_flag":true,"polygons":[["-9.297941 + 152.798428 -12.43171 173.97085 5.516438 177.632268 8.604058 156.669959 -9.297941 + 152.798428"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2340.061.2017171213059.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2340.061.2017171213059.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2340.061.2017171213059.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2340.061.2017272140720.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2345.061.2017171213834.hdf","time_start":"2000-03-02T23:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083451","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T23:50:00.000Z","id":"G1462775224-LAADS","original_format":"ECHO10","granule_size":"166.380016326904","browse_flag":true,"polygons":[["-26.817287 + 147.378227 -30.47031 171.205324 -12.345154 174.173302 -9.204379 152.805141 + -26.817287 147.378227"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2345.061.2017171213834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2345.061.2017171213834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2345.061.2017171213834.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2345.061.2017272142117.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2350.061.2017171213811.hdf","time_start":"2000-03-02T23:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083452","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-02T23:55:00.000Z","id":"G1462775230-LAADS","original_format":"ECHO10","granule_size":"145.180445671082","browse_flag":true,"polygons":[["-43.720108 + 138.926473 -48.463401 169.345871 -30.244595 171.606436 -26.729622 147.405089 + -43.720108 138.926473"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2350.061.2017171213811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2350.061.2017171213811.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2350.061.2017171213811.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2350.061.2017272141113.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000062.2355.061.2017171214614.hdf","time_start":"2000-03-02T23:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084458","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T00:00:00.000Z","id":"G1462775693-LAADS","original_format":"ECHO10","granule_size":"157.959558486938","browse_flag":true,"polygons":[["-59.131098 + 123.157068 -66.332816 169.382414 -48.095178 169.975972 -43.664137 139.054716 + -59.131098 123.157068"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2355.061.2017171214614.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000062.2355.061.2017171214614.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/062/MOD02QKM.A2000062.2355.061.2017171214614.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/062/MOBRGB.A2000062.2355.061.2017272141702.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0000.061.2017171220453.hdf","time_start":"2000-03-03T00:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087398","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T00:05:00.000Z","id":"G1462779134-LAADS","original_format":"ECHO10","granule_size":"146.487978935242","browse_flag":true,"polygons":[["-69.699235 + 87.622044 -83.822536 -174.363813 -65.835293 170.358975 -59.175733 123.53011 + -69.699235 87.622044"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0000.061.2017171220453.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0000.061.2017171220453.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0000.061.2017171220453.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0000.061.2017272140108.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0005.061.2017171220453.hdf","time_start":"2000-03-03T00:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087060","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T00:10:00.000Z","id":"G1462779118-LAADS","original_format":"ECHO10","granule_size":"78.2408313751221","browse_flag":true,"polygons":[["-67.29316 + 37.157809 -77.519226 -34.328895 -83.189296 -173.411962 -70.010376 88.134761 + -67.29316 37.157809"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0005.061.2017171220453.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0005.061.2017171220453.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0005.061.2017171220453.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0005.061.2017272135355.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0055.061.2017171215405.hdf","time_start":"2000-03-03T00:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085756","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T01:00:00.000Z","id":"G1462778786-LAADS","original_format":"ECHO10","granule_size":"73.7652883529663","browse_flag":true,"polygons":[["75.546559 + 135.438268 66.318959 -160.145656 70.791191 -109.766677 84.925163 1.507588 + 75.546559 135.438268"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0055.061.2017171215405.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0055.061.2017171215405.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0055.061.2017171215405.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0055.061.2017272135537.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0100.061.2017171215408.hdf","time_start":"2000-03-03T01:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085757","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T01:05:00.000Z","id":"G1462778781-LAADS","original_format":"ECHO10","granule_size":"156.149224281311","browse_flag":true,"polygons":[["57.822296 + 138.113884 52.706822 175.292973 66.671353 -160.59741 76.016761 133.801708 + 57.822296 138.113884"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0100.061.2017171215408.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0100.061.2017171215408.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0100.061.2017171215408.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0100.061.2017272141145.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0105.061.2017171215831.hdf","time_start":"2000-03-03T01:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086750","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T01:10:00.000Z","id":"G1462779098-LAADS","original_format":"ECHO10","granule_size":"162.621553421021","browse_flag":true,"polygons":[["40.015249 + 136.802941 36.369471 163.710148 52.970086 174.745397 58.302542 137.582007 + 40.015249 136.802941"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0105.061.2017171215831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0105.061.2017171215831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0105.061.2017171215831.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0105.061.2017272141450.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0110.061.2017171220308.hdf","time_start":"2000-03-03T01:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085758","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T01:15:00.000Z","id":"G1462778785-LAADS","original_format":"ECHO10","granule_size":"127.271723747253","browse_flag":true,"polygons":[["22.19671 + 134.407805 19.110981 156.854565 36.557118 163.287395 40.431973 136.570604 + 22.19671 134.407805"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0110.061.2017171220308.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0110.061.2017171220308.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0110.061.2017171220308.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0110.061.2017272141222.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0115.061.2017171215446.hdf","time_start":"2000-03-03T01:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085759","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T01:20:00.000Z","id":"G1462778782-LAADS","original_format":"ECHO10","granule_size":"157.461472511292","browse_flag":true,"polygons":[["4.429568 + 131.220995 1.447093 152.106117 19.241957 156.582708 22.507804 134.298312 4.429568 + 131.220995"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0115.061.2017171215446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0115.061.2017171215446.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0115.061.2017171215446.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0115.061.2017272142636.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0120.061.2017171215418.hdf","time_start":"2000-03-03T01:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085760","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T01:25:00.000Z","id":"G1462778787-LAADS","original_format":"ECHO10","granule_size":"166.194241523743","browse_flag":true,"polygons":[["-13.247687 + 127.021759 -16.465095 148.559018 1.531738 152.045086 4.60784 131.172564 -13.247687 + 127.021759"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0120.061.2017171215418.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0120.061.2017171215418.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0120.061.2017171215418.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0120.061.2017272141820.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0125.061.2017171215835.hdf","time_start":"2000-03-03T01:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086751","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T01:30:00.000Z","id":"G1462779106-LAADS","original_format":"ECHO10","granule_size":"162.085401535034","browse_flag":true,"polygons":[["-30.669903 + 121.117975 -34.501451 145.976922 -16.348749 148.804491 -13.156838 127.04308 + -30.669903 121.117975"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0125.061.2017171215835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0125.061.2017171215835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0125.061.2017171215835.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0125.061.2017272140528.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0130.061.2017171220601.hdf","time_start":"2000-03-03T01:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086081","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T01:35:00.000Z","id":"G1462778940-LAADS","original_format":"ECHO10","granule_size":"167.198949813843","browse_flag":true,"polygons":[["-47.351995 + 111.575963 -52.473592 144.38952 -34.243484 146.427041 -30.584943 121.155412 + -47.351995 111.575963"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0130.061.2017171220601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0130.061.2017171220601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0130.061.2017171220601.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0130.061.2017272142342.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0135.061.2017171215452.hdf","time_start":"2000-03-03T01:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085761","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T01:40:00.000Z","id":"G1462778783-LAADS","original_format":"ECHO10","granule_size":"161.009506225586","browse_flag":true,"polygons":[["-62.14218 + 92.877342 -70.303743 145.273323 -52.075277 145.026462 -47.311046 111.746276 + -62.14218 92.877342"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0135.061.2017171215452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0135.061.2017171215452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0135.061.2017171215452.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0135.061.2017272141725.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0140.061.2017171215435.hdf","time_start":"2000-03-03T01:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085762","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T01:45:00.000Z","id":"G1462778790-LAADS","original_format":"ECHO10","granule_size":"143.043831825256","browse_flag":true,"polygons":[["-70.49723 + 51.482766 -86.907678 -168.24596 -69.783816 146.286912 -62.221402 93.320713 + -70.49723 51.482766"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0140.061.2017171215435.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0140.061.2017171215435.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0140.061.2017171215435.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0140.061.2017272135902.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0145.061.2017171215412.hdf","time_start":"2000-03-03T01:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085428","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T01:50:00.000Z","id":"G1462778602-LAADS","original_format":"ECHO10","granule_size":"50.2074098587036","browse_flag":true,"polygons":[["-64.96682 + 4.218595 -73.612077 -56.769216 -86.257691 -171.303053 -70.867943 51.829818 + -64.96682 4.218595"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0145.061.2017171215412.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0145.061.2017171215412.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0145.061.2017171215412.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0145.061.2017272135450.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0235.061.2017171215525.hdf","time_start":"2000-03-03T02:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084809","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T02:40:00.000Z","id":"G1462778461-LAADS","original_format":"ECHO10","granule_size":"102.778760910034","browse_flag":true,"polygons":[["71.694834 + 112.179362 63.79542 167.834602 71.252419 -146.940953 87.186529 27.681985 71.694834 + 112.179362"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0235.061.2017171215525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0235.061.2017171215525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0235.061.2017171215525.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0235.061.2017272140041.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0240.061.2017171214709.hdf","time_start":"2000-03-03T02:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084459","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T02:45:00.000Z","id":"G1462778264-LAADS","original_format":"ECHO10","granule_size":"164.111744880676","browse_flag":true,"polygons":[["53.846059 + 113.259761 49.192389 147.301482 64.135273 167.298128 72.178404 111.009345 + 53.846059 113.259761"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0240.061.2017171214709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0240.061.2017171214709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0240.061.2017171214709.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0240.061.2017272140604.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0245.061.2017171215443.hdf","time_start":"2000-03-03T02:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085763","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T02:50:00.000Z","id":"G1462778789-LAADS","original_format":"ECHO10","granule_size":"161.282900810242","browse_flag":true,"polygons":[["36.036829 + 111.627453 32.568796 137.188049 49.434639 146.782617 54.318679 112.823168 + 36.036829 111.627453"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0245.061.2017171215443.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0245.061.2017171215443.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0245.061.2017171215443.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0245.061.2017272141646.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0250.061.2017171220437.hdf","time_start":"2000-03-03T02:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085764","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T02:55:00.000Z","id":"G1462778784-LAADS","original_format":"ECHO10","granule_size":"162.897210121155","browse_flag":true,"polygons":[["18.224137 + 109.044657 15.192636 130.939608 32.742569 136.796968 36.431162 111.421694 + 18.224137 109.044657"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0250.061.2017171220437.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0250.061.2017171220437.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0250.061.2017171220437.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0250.061.2017272141925.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0255.061.2017171220820.hdf","time_start":"2000-03-03T02:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086082","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T03:00:00.000Z","id":"G1462778936-LAADS","original_format":"ECHO10","granule_size":"162.559792518616","browse_flag":true,"polygons":[["0.479476 + 105.66474 -2.526008 126.502827 15.313894 130.702066 18.506112 108.950115 0.479476 + 105.66474"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0255.061.2017171220820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0255.061.2017171220820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0255.061.2017171220820.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0255.061.2017272142244.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0300.061.2017171215458.hdf","time_start":"2000-03-03T03:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086083","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T03:05:00.000Z","id":"G1462778947-LAADS","original_format":"ECHO10","granule_size":"160.101661682129","browse_flag":true,"polygons":[["-17.174036 + 101.16689 -20.491903 123.186366 -2.451983 126.51257 0.625744 105.628954 -17.174036 + 101.16689"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0300.061.2017171215458.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0300.061.2017171215458.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0300.061.2017171215458.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0300.061.2017272141914.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0305.061.2017171215514.hdf","time_start":"2000-03-03T03:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085765","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T03:10:00.000Z","id":"G1462778788-LAADS","original_format":"ECHO10","granule_size":"160.637413978577","browse_flag":true,"polygons":[["-34.477875 + 94.681727 -38.520908 120.801976 -20.345259 123.483109 -17.08357 101.190284 + -34.477875 94.681727"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0305.061.2017171215514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0305.061.2017171215514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0305.061.2017171215514.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0305.061.2017272141948.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0310.061.2017171215519.hdf","time_start":"2000-03-03T03:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085429","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T03:15:00.000Z","id":"G1462778610-LAADS","original_format":"ECHO10","granule_size":"164.462874412537","browse_flag":true,"polygons":[["-50.890547 + 83.80822 -56.468729 119.53575 -38.231108 121.295446 -34.398214 94.738754 -50.890547 + 83.80822"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0310.061.2017171215519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0310.061.2017171215519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0310.061.2017171215519.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0310.061.2017272142411.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0315.061.2017171215443.hdf","time_start":"2000-03-03T03:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085766","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T03:20:00.000Z","id":"G1462778792-LAADS","original_format":"ECHO10","granule_size":"161.42841053009","browse_flag":true,"polygons":[["-64.865653 + 61.429663 -74.250541 121.776438 -56.043092 120.178757 -50.872252 84.038878 + -64.865653 61.429663"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0315.061.2017171215443.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0315.061.2017171215443.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0315.061.2017171215443.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0315.061.2017272141816.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0320.061.2017171220119.hdf","time_start":"2000-03-03T03:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086417","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T03:25:00.000Z","id":"G1462779064-LAADS","original_format":"ECHO10","granule_size":"132.659945487976","browse_flag":true,"polygons":[["-70.519463 + 14.618268 -86.552889 -118.961775 -73.700156 123.051756 -64.987208 61.936136 + -70.519463 14.618268"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0320.061.2017171220119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0320.061.2017171220119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0320.061.2017171220119.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0320.061.2017272135829.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0325.061.2017171215429.hdf","time_start":"2000-03-03T03:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085767","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T03:30:00.000Z","id":"G1462778795-LAADS","original_format":"ECHO10","granule_size":"28.4588670730591","browse_flag":true,"polygons":[["-62.290791 + -27.079033 -69.777499 -80.292856 -86.539644 -129.861673 -70.88923 14.731076 + -62.290791 -27.079033"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0325.061.2017171215429.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0325.061.2017171215429.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0325.061.2017171215429.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0325.061.2017272135559.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0415.061.2017171215511.hdf","time_start":"2000-03-03T04:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085768","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T04:20:00.000Z","id":"G1462778797-LAADS","original_format":"ECHO10","granule_size":"133.548676490784","browse_flag":true,"polygons":[["67.735968 + 88.211715 60.890399 136.966172 70.86541 175.835555 85.319206 60.451653 67.735968 + 88.211715"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0415.061.2017171215511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0415.061.2017171215511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0415.061.2017171215511.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0415.061.2017272140108.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0420.061.2017171215511.hdf","time_start":"2000-03-03T04:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085769","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T04:25:00.000Z","id":"G1462778796-LAADS","original_format":"ECHO10","granule_size":"161.975841522217","browse_flag":true,"polygons":[["49.956848 + 88.319807 45.665618 119.828948 61.210508 136.39179 68.228633 87.393271 49.956848 + 88.319807"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0420.061.2017171215511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0420.061.2017171215511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0420.061.2017171215511.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0420.061.2017272141316.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0425.061.2017171215442.hdf","time_start":"2000-03-03T04:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085770","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T04:30:00.000Z","id":"G1462778802-LAADS","original_format":"ECHO10","granule_size":"163.73176574707","browse_flag":true,"polygons":[["32.049839 + 86.492041 28.735398 110.825453 45.895972 119.318635 50.41495 88.048483 32.049839 + 86.492041"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0425.061.2017171215442.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0425.061.2017171215442.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0425.061.2017171215442.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0425.061.2017272140730.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0430.061.2017171220331.hdf","time_start":"2000-03-03T04:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086418","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T04:35:00.000Z","id":"G1462779071-LAADS","original_format":"ECHO10","granule_size":"155.154323577881","browse_flag":true,"polygons":[["14.257953 + 83.638201 11.256255 105.103859 28.893296 110.478482 32.418732 86.215316 14.257953 + 83.638201"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0430.061.2017171220331.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0430.061.2017171220331.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0430.061.2017171220331.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0430.061.2017272140809.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0435.061.2017171215503.hdf","time_start":"2000-03-03T04:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086084","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T04:40:00.000Z","id":"G1462778945-LAADS","original_format":"ECHO10","granule_size":"156.687497138977","browse_flag":true,"polygons":[["-3.463937 + 80.054048 -6.508828 100.953368 11.366576 104.910664 14.504362 83.559119 -3.463937 + 80.054048"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0435.061.2017171215503.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0435.061.2017171215503.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0435.061.2017171215503.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0435.061.2017272141445.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0440.061.2017171220329.hdf","time_start":"2000-03-03T04:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086085","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T04:45:00.000Z","id":"G1462778939-LAADS","original_format":"ECHO10","granule_size":"162.411489486694","browse_flag":true,"polygons":[["-21.082543 + 75.217469 -24.521619 97.870287 -6.445072 101.045998 -3.350175 80.030856 -21.082543 + 75.217469"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0440.061.2017171220329.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0440.061.2017171220329.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0440.061.2017171220329.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0440.061.2017272142203.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0445.061.2017171215520.hdf","time_start":"2000-03-03T04:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085771","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T04:50:00.000Z","id":"G1462778798-LAADS","original_format":"ECHO10","granule_size":"160.678018569946","browse_flag":true,"polygons":[["-38.244442 + 68.044043 -42.537572 95.68058 -24.34291 98.204604 -20.993521 75.243145 -38.244442 + 68.044043"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0445.061.2017171215520.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0445.061.2017171215520.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0445.061.2017171215520.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0445.061.2017272141953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0450.061.2017171214657.hdf","time_start":"2000-03-03T04:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084810","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T04:55:00.000Z","id":"G1462778455-LAADS","original_format":"ECHO10","granule_size":"150.216618537903","browse_flag":true,"polygons":[["-54.323067 + 55.52357 -60.456183 94.829349 -42.215526 96.224314 -38.17393 68.130003 -54.323067 + 55.52357"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0450.061.2017171214657.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0450.061.2017171214657.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0450.061.2017171214657.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0450.061.2017272142004.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0455.061.2017171215513.hdf","time_start":"2000-03-03T04:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086086","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T05:00:00.000Z","id":"G1462778938-LAADS","original_format":"ECHO10","granule_size":"153.851069450378","browse_flag":true,"polygons":[["-67.199514 + 28.562149 -78.161591 99.600023 -60.003422 95.51377 -54.327013 55.809 -67.199514 + 28.562149"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0455.061.2017171215513.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0455.061.2017171215513.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0455.061.2017171215513.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0455.061.2017272141337.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0500.061.2017171215520.hdf","time_start":"2000-03-03T05:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085772","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T05:05:00.000Z","id":"G1462778803-LAADS","original_format":"ECHO10","granule_size":"114.036959648132","browse_flag":true,"polygons":[["-69.732751 + -21.780276 -83.232112 -118.287106 -77.572898 101.20448 -67.372802 29.106065 + -69.732751 -21.780276"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0500.061.2017171215520.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0500.061.2017171215520.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0500.061.2017171215520.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0500.061.2017272135739.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0550.061.2017171215452.hdf","time_start":"2000-03-03T05:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085773","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T05:55:00.000Z","id":"G1462778807-LAADS","original_format":"ECHO10","granule_size":"35.9962549209595","browse_flag":true,"polygons":[["81.38068 + 55.439819 69.307263 139.812201 68.682752 -167.619439 79.508381 -89.879435 + 81.38068 55.439819"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0550.061.2017171215452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0550.061.2017171215452.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0550.061.2017171215452.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0550.061.2017272135602.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0555.061.2017171215558.hdf","time_start":"2000-03-03T05:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085774","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T06:00:00.000Z","id":"G1462778794-LAADS","original_format":"ECHO10","granule_size":"146.25915813446","browse_flag":true,"polygons":[["63.771676 + 63.843179 57.75241 107.165383 69.686238 139.563305 81.778879 52.046525 63.771676 + 63.843179"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0555.061.2017171215558.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0555.061.2017171215558.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0555.061.2017171215558.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0555.061.2017272140757.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0600.061.2017171215543.hdf","time_start":"2000-03-03T06:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085775","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T06:05:00.000Z","id":"G1462778800-LAADS","original_format":"ECHO10","granule_size":"161.481991767883","browse_flag":true,"polygons":[["45.979981 + 63.228857 41.989833 92.66703 58.043532 106.60547 64.263041 63.133032 45.979981 + 63.228857"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0600.061.2017171215543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0600.061.2017171215543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0600.061.2017171215543.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0600.061.2017272141015.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0605.061.2017171215510.hdf","time_start":"2000-03-03T06:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085776","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T06:10:00.000Z","id":"G1462778808-LAADS","original_format":"ECHO10","granule_size":"162.713217735291","browse_flag":true,"polygons":[["28.159658 + 61.165318 24.956756 84.662592 42.203139 92.1868 46.426795 62.975186 28.159658 + 61.165318"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0605.061.2017171215510.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0605.061.2017171215510.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0605.061.2017171215510.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0605.061.2017272140646.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0610.061.2017171215520.hdf","time_start":"2000-03-03T06:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085777","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T06:15:00.000Z","id":"G1462778799-LAADS","original_format":"ECHO10","granule_size":"126.740788459778","browse_flag":true,"polygons":[["10.28724 + 58.195134 7.306768 79.357582 25.100586 84.357861 28.510274 60.979989 10.28724 + 58.195134"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0610.061.2017171215520.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0610.061.2017171215520.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0610.061.2017171215520.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0610.061.2017272135652.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0615.061.2017171214641.hdf","time_start":"2000-03-03T06:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084811","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T06:20:00.000Z","id":"G1462778457-LAADS","original_format":"ECHO10","granule_size":"145.239120483398","browse_flag":true,"polygons":[["-7.410683 + 54.384642 -10.511573 75.446567 7.409419 79.195793 10.508673 58.130428 -7.410683 + 54.384642"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0615.061.2017171214641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0615.061.2017171214641.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0615.061.2017171214641.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0615.061.2017272140921.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0620.061.2017171215712.hdf","time_start":"2000-03-03T06:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084812","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T06:25:00.000Z","id":"G1462778456-LAADS","original_format":"ECHO10","granule_size":"157.012963294983","browse_flag":true,"polygons":[["-24.966514 + 49.161035 -28.547183 72.585246 -10.437684 75.618428 -7.313371 54.375622 -24.966514 + 49.161035"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0620.061.2017171215712.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0620.061.2017171215712.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0620.061.2017171215712.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0620.061.2017272141840.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0625.061.2017171215704.hdf","time_start":"2000-03-03T06:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085430","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T06:30:00.000Z","id":"G1462778605-LAADS","original_format":"ECHO10","granule_size":"151.12718296051","browse_flag":true,"polygons":[["-41.959764 + 41.163479 -46.546874 70.614111 -28.33641 72.963817 -24.878424 49.189535 -41.959764 + 41.163479"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0625.061.2017171215704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0625.061.2017171215704.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0625.061.2017171215704.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0625.061.2017272141615.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0630.061.2017171220726.hdf","time_start":"2000-03-03T06:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086087","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T06:35:00.000Z","id":"G1462778943-LAADS","original_format":"ECHO10","granule_size":"166.887236595154","browse_flag":true,"polygons":[["-57.615593 + 26.577498 -64.432872 70.313782 -46.193441 71.211381 -41.900352 41.283859 -57.615593 + 26.577498"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0630.061.2017171220726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0630.061.2017171220726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0630.061.2017171220726.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0630.061.2017272142821.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0635.061.2017171215601.hdf","time_start":"2000-03-03T06:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085778","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T06:40:00.000Z","id":"G1462778801-LAADS","original_format":"ECHO10","granule_size":"147.387219429016","browse_flag":true,"polygons":[["-69.023411 + -5.851687 -81.997876 80.461106 -63.954136 71.052491 -57.647092 26.924414 -69.023411 + -5.851687"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0635.061.2017171215601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0635.061.2017171215601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0635.061.2017171215601.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0635.061.2017272140706.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0640.061.2017171215508.hdf","time_start":"2000-03-03T06:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085779","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T06:45:00.000Z","id":"G1462778806-LAADS","original_format":"ECHO10","granule_size":"90.6221961975098","browse_flag":true,"polygons":[["-68.231414 + -56.977195 -79.462368 -135.256953 -81.364401 82.293107 -69.254294 -5.323442 + -68.231414 -56.977195"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0640.061.2017171215508.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0640.061.2017171215508.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0640.061.2017171215508.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0640.061.2017272135647.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0730.061.2017171215529.hdf","time_start":"2000-03-03T07:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085780","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T07:35:00.000Z","id":"G1462778804-LAADS","original_format":"ECHO10","granule_size":"61.9646053314209","browse_flag":true,"polygons":[["77.504888 + 35.292933 67.447504 105.268925 70.278516 156.967459 83.260577 -106.081799 + 77.504888 35.292933"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0730.061.2017171215529.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0730.061.2017171215529.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0730.061.2017171215529.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0730.061.2017272135808.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0735.061.2017171220705.hdf","time_start":"2000-03-03T07:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086088","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T07:40:00.000Z","id":"G1462778942-LAADS","original_format":"ECHO10","granule_size":"151.690878868103","browse_flag":true,"polygons":[["59.804528 + 39.221265 54.423633 78.246215 67.813163 104.863972 77.957067 33.242131 59.804528 + 39.221265"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0735.061.2017171220705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0735.061.2017171220705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0735.061.2017171220705.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0735.061.2017272141032.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0740.061.2017171215537.hdf","time_start":"2000-03-03T07:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086089","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T07:45:00.000Z","id":"G1462778944-LAADS","original_format":"ECHO10","granule_size":"155.319881439209","browse_flag":true,"polygons":[["42.00348 + 38.122145 38.253692 65.809751 54.693169 77.699972 60.290804 38.647179 42.00348 + 38.122145"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0740.061.2017171215537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0740.061.2017171215537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0740.061.2017171215537.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0740.061.2017272140801.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0745.061.2017171215613.hdf","time_start":"2000-03-03T07:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086090","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T07:50:00.000Z","id":"G1462778952-LAADS","original_format":"ECHO10","granule_size":"159.202313423157","browse_flag":true,"polygons":[["24.186362 + 35.822735 21.065579 58.605239 38.449723 65.367581 42.431645 37.869136 24.186362 + 35.822735"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0745.061.2017171215613.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0745.061.2017171215613.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0745.061.2017171215613.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0745.061.2017272140426.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0750.061.2017171215540.hdf","time_start":"2000-03-03T07:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086091","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T07:55:00.000Z","id":"G1462778946-LAADS","original_format":"ECHO10","granule_size":"153.54971408844","browse_flag":true,"polygons":[["6.411116 + 32.736643 3.434186 53.692336 21.200675 58.322934 24.510898 35.711486 6.411116 + 32.736643"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0750.061.2017171215540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0750.061.2017171215540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0750.061.2017171215540.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0750.061.2017272135843.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0755.061.2017171215610.hdf","time_start":"2000-03-03T07:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086092","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T08:00:00.000Z","id":"G1462778954-LAADS","original_format":"ECHO10","granule_size":"156.178732872009","browse_flag":true,"polygons":[["-11.362683 + 28.669016 -14.535762 50.007374 3.524713 53.596343 6.602929 32.695651 -11.362683 + 28.669016"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0755.061.2017171215610.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0755.061.2017171215610.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0755.061.2017171215610.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0755.061.2017272140447.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0800.061.2017171220316.hdf","time_start":"2000-03-03T08:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085781","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T08:05:00.000Z","id":"G1462778809-LAADS","original_format":"ECHO10","granule_size":"156.398447990417","browse_flag":true,"polygons":[["-28.832874 + 23.008326 -32.572545 47.338038 -14.432523 50.231835 -11.272579 28.682522 -28.832874 + 23.008326"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0800.061.2017171220316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0800.061.2017171220316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0800.061.2017171220316.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0800.061.2017272141000.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0805.061.2017171215542.hdf","time_start":"2000-03-03T08:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086093","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T08:10:00.000Z","id":"G1462778953-LAADS","original_format":"ECHO10","granule_size":"164.829365730286","browse_flag":true,"polygons":[["-45.627658 + 14.018589 -50.553993 45.614821 -32.328001 47.762383 -28.748881 23.038228 -45.627658 + 14.018589"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0805.061.2017171215542.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0805.061.2017171215542.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0805.061.2017171215542.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0805.061.2017272142626.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0810.061.2017171215540.hdf","time_start":"2000-03-03T08:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086094","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T08:15:00.000Z","id":"G1462778948-LAADS","original_format":"ECHO10","granule_size":"166.411451339722","browse_flag":true,"polygons":[["-60.726998 + -3.21393 -68.400702 46.045543 -50.167247 46.244099 -45.570674 14.143871 -60.726998 + -3.21393"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0810.061.2017171215540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0810.061.2017171215540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0810.061.2017171215540.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0810.061.2017272142040.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0815.061.2017171220502.hdf","time_start":"2000-03-03T08:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087399","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T08:20:00.000Z","id":"G1462779133-LAADS","original_format":"ECHO10","granule_size":"146.382444381714","browse_flag":true,"polygons":[["-70.199571 + -41.696692 -85.570628 71.981211 -67.895296 46.930691 -60.791577 -2.798877 + -70.199571 -41.696692"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0815.061.2017171220502.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0815.061.2017171220502.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0815.061.2017171220502.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0815.061.2017272140625.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0820.061.2017171220457.hdf","time_start":"2000-03-03T08:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087061","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T08:25:00.000Z","id":"G1462779119-LAADS","original_format":"ECHO10","granule_size":"66.0007200241089","browse_flag":true,"polygons":[["-66.147719 + -90.657088 -75.584328 -156.645338 -84.891829 72.666178 -70.489052 -41.270538 + -66.147719 -90.657088"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0820.061.2017171220457.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0820.061.2017171220457.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0820.061.2017171220457.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0820.061.2017272135718.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0910.061.2017171220414.hdf","time_start":"2000-03-03T09:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087062","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T09:15:00.000Z","id":"G1462779121-LAADS","original_format":"ECHO10","granule_size":"91.9223756790161","browse_flag":true,"polygons":[["73.575897 + 12.691042 65.071751 72.335876 71.137201 120.187399 86.469918 -103.355052 73.575897 + 12.691042"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0910.061.2017171220414.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0910.061.2017171220414.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0910.061.2017171220414.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0910.061.2017272140108.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0915.061.2017171220201.hdf","time_start":"2000-03-03T09:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086095","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T09:20:00.000Z","id":"G1462778951-LAADS","original_format":"ECHO10","granule_size":"158.674094200134","browse_flag":true,"polygons":[["55.831698 + 14.427701 50.957833 49.991764 65.415033 71.843266 74.051899 11.285089 55.831698 + 14.427701"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0915.061.2017171220201.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0915.061.2017171220201.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0915.061.2017171220201.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0915.061.2017272141734.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0920.061.2017171220337.hdf","time_start":"2000-03-03T09:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086096","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T09:25:00.000Z","id":"G1462778949-LAADS","original_format":"ECHO10","granule_size":"164.363795280457","browse_flag":true,"polygons":[["38.022588 + 12.964801 34.471873 39.18151 51.211828 49.454479 56.309689 13.959539 38.022588 + 12.964801"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0920.061.2017171220337.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0920.061.2017171220337.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0920.061.2017171220337.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0920.061.2017272141336.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0925.061.2017171215622.hdf","time_start":"2000-03-03T09:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085782","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T09:30:00.000Z","id":"G1462778811-LAADS","original_format":"ECHO10","granule_size":"155.656624794006","browse_flag":true,"polygons":[["20.208252 + 10.489226 17.154646 32.636996 34.653966 38.768338 38.431378 12.762099 20.208252 + 10.489226"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0925.061.2017171215622.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0925.061.2017171215622.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0925.061.2017171215622.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0925.061.2017272140302.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0930.061.2017171215604.hdf","time_start":"2000-03-03T09:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085783","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T09:35:00.000Z","id":"G1462778812-LAADS","original_format":"ECHO10","granule_size":"151.955076217651","browse_flag":true,"polygons":[["2.455845 + 7.198481 -0.536619 28.050626 17.280266 32.383447 20.506996 10.377991 2.455845 + 7.198481"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0930.061.2017171215604.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0930.061.2017171215604.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0930.061.2017171215604.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0930.061.2017272135726.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0935.061.2017171220713.hdf","time_start":"2000-03-03T09:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086097","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T09:40:00.000Z","id":"G1462778950-LAADS","original_format":"ECHO10","granule_size":"160.737622261047","browse_flag":true,"polygons":[["-15.20878 + 2.855474 -18.473194 24.612325 -0.456834 28.017513 2.619759 7.157932 -15.20878 + 2.855474"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0935.061.2017171220713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0935.061.2017171220713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0935.061.2017171220713.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0935.061.2017272141029.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0940.061.2017171215631.hdf","time_start":"2000-03-03T09:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086098","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T09:45:00.000Z","id":"G1462778955-LAADS","original_format":"ECHO10","granule_size":"156.916948318481","browse_flag":true,"polygons":[["-32.656913 + -3.362196 -36.595103 22.133371 -18.344834 24.903024 -15.116466 2.878194 -32.656913 + -3.362196"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0940.061.2017171215631.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0940.061.2017171215631.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0940.061.2017171215631.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0940.061.2017272141137.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0945.061.2017171215555.hdf","time_start":"2000-03-03T09:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085784","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T09:50:00.000Z","id":"G1462778817-LAADS","original_format":"ECHO10","granule_size":"168.212354660034","browse_flag":true,"polygons":[["-49.202546 + -13.56857 -54.554445 20.704823 -36.321375 22.605187 -32.573387 -3.319336 -49.202546 + -13.56857"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0945.061.2017171215555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0945.061.2017171215555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0945.061.2017171215555.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0945.061.2017272142634.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0950.061.2017171215557.hdf","time_start":"2000-03-03T09:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085785","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T09:55:00.000Z","id":"G1462778814-LAADS","original_format":"ECHO10","granule_size":"163.931363105774","browse_flag":true,"polygons":[["-63.596653 + -34.074266 -72.358636 22.265966 -54.141287 21.373423 -49.173748 -13.363781 + -63.596653 -34.074266"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0950.061.2017171215557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0950.061.2017171215557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0950.061.2017171215557.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0950.061.2017272142206.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.0955.061.2017171220501.hdf","time_start":"2000-03-03T09:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087063","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T10:00:00.000Z","id":"G1462779120-LAADS","original_format":"ECHO10","granule_size":"144.611116409302","browse_flag":true,"polygons":[["-70.609945 + -78.44348 -87.396752 109.371734 -71.826497 23.308709 -63.701566 -33.594118 + -70.609945 -78.44348"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0955.061.2017171220501.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.0955.061.2017171220501.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.0955.061.2017171220501.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.0955.061.2017272140524.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1000.061.2017171220449.hdf","time_start":"2000-03-03T10:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087064","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T10:05:00.000Z","id":"G1462779125-LAADS","original_format":"ECHO10","granule_size":"40.5635528564453","browse_flag":true,"polygons":[["-63.615356 + -122.838177 -71.665868 -179.666874 -87.002978 98.252782 -70.946977 -78.206963 + -63.615356 -122.838177"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1000.061.2017171220449.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1000.061.2017171220449.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1000.061.2017171220449.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1000.061.2017272135849.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1050.061.2017171220506.hdf","time_start":"2000-03-03T10:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087400","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T10:55:00.000Z","id":"G1462779139-LAADS","original_format":"ECHO10","granule_size":"130.160473823547","browse_flag":true,"polygons":[["69.624969 + -10.964369 62.308972 40.865617 71.153522 82.851279 86.642943 -57.979048 69.624969 + -10.964369"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1050.061.2017171220506.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1050.061.2017171220506.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1050.061.2017171220506.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1050.061.2017272140849.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1055.061.2017171215554.hdf","time_start":"2000-03-03T10:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085786","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T11:00:00.000Z","id":"G1462778810-LAADS","original_format":"ECHO10","granule_size":"162.511923789978","browse_flag":true,"polygons":[["51.85533 + -10.4909 47.392468 22.245257 62.635796 40.313489 70.112201 -12.00472 51.85533 + -10.4909"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1055.061.2017171215554.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1055.061.2017171215554.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1055.061.2017171215554.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1055.061.2017272142117.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1100.061.2017171220731.hdf","time_start":"2000-03-03T11:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086419","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T11:05:00.000Z","id":"G1462779061-LAADS","original_format":"ECHO10","granule_size":"146.504146575928","browse_flag":true,"polygons":[["34.04112 + -12.240949 30.650223 12.749865 47.627232 21.735655 52.322513 -10.874772 34.04112 + -12.240949"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1100.061.2017171220731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1100.061.2017171220731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1100.061.2017171220731.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1100.061.2017272140905.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1105.061.2017171214652.hdf","time_start":"2000-03-03T11:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084813","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T11:10:00.000Z","id":"G1462778469-LAADS","original_format":"ECHO10","granule_size":"158.13707447052","browse_flag":true,"polygons":[["16.233184 + -14.902743 13.224682 6.759628 30.820047 12.36466 34.428853 -12.422835 16.233184 + -14.902743"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1105.061.2017171214652.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1105.061.2017171214652.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1105.061.2017171214652.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1105.061.2017272140049.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1110.061.2017171215956.hdf","time_start":"2000-03-03T11:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084814","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T11:15:00.000Z","id":"G1462778467-LAADS","original_format":"ECHO10","granule_size":"148.47650718689","browse_flag":true,"polygons":[["-1.494366 + -18.38171 -4.51821 2.472524 13.339503 6.54715 16.504019 -14.987375 -1.494366 + -18.38171"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1110.061.2017171215956.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1110.061.2017171215956.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1110.061.2017171215956.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1110.061.2017272141216.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1115.061.2017171214700.hdf","time_start":"2000-03-03T11:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085124","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T11:20:00.000Z","id":"G1462778561-LAADS","original_format":"ECHO10","granule_size":"147.065901756287","browse_flag":true,"polygons":[["-19.130099 + -23.044168 -22.50873 -0.719201 -4.450895 2.531209 -1.363877 -18.411068 -19.130099 + -23.044168"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1115.061.2017171214700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1115.061.2017171214700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1115.061.2017171214700.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1115.061.2017272140940.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1120.061.2017171214739.hdf","time_start":"2000-03-03T11:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084815","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T11:25:00.000Z","id":"G1462778470-LAADS","original_format":"ECHO10","granule_size":"153.673704147339","browse_flag":true,"polygons":[["-36.364973 + -29.859585 -40.530609 -3.013226 -22.345434 -0.40759 -19.040548 -23.019488 + -36.364973 -29.859585"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1120.061.2017171214739.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1120.061.2017171214739.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1120.061.2017171214739.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1120.061.2017272141642.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1125.061.2017171214729.hdf","time_start":"2000-03-03T11:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084816","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T11:30:00.000Z","id":"G1462778474-LAADS","original_format":"ECHO10","granule_size":"170.928544044495","browse_flag":true,"polygons":[["-52.696113 + -41.589155 -58.553932 -4.087774 -40.22467 -2.487112 -36.289777 -29.787905 + -52.696113 -41.589155"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1125.061.2017171214729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1125.061.2017171214729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1125.061.2017171214729.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1125.061.2017272142919.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1130.061.2017171215708.hdf","time_start":"2000-03-03T11:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086420","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T11:35:00.000Z","id":"G1462779063-LAADS","original_format":"ECHO10","granule_size":"161.101247787476","browse_flag":true,"polygons":[["-66.135368 + -66.247102 -76.296842 -0.689904 -58.111359 -3.403278 -52.687551 -41.332148 + -66.135368 -66.247102"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1130.061.2017171215708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1130.061.2017171215708.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1130.061.2017171215708.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1130.061.2017272142717.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1135.061.2017171215626.hdf","time_start":"2000-03-03T11:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086099","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T11:40:00.000Z","id":"G1462778956-LAADS","original_format":"ECHO10","granule_size":"138.99515247345","browse_flag":true,"polygons":[["-70.205281 + -115.199242 -84.946408 135.199103 -75.733849 0.602742 -66.288372 -65.712307 + -70.205281 -115.199242"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1135.061.2017171215626.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1135.061.2017171215626.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1135.061.2017171215626.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1135.061.2017272140421.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1140.061.2017171215544.hdf","time_start":"2000-03-03T11:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086100","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T11:45:00.000Z","id":"G1462778957-LAADS","original_format":"ECHO10","granule_size":"18.0714740753174","browse_flag":true,"polygons":[["-60.749459 + -153.715395 -67.726202 156.504224 -85.162435 128.021503 -70.57251 -115.200344 + -60.749459 -153.715395"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1140.061.2017171215544.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1140.061.2017171215544.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1140.061.2017171215544.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1140.061.2017272135918.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1225.061.2017171220625.hdf","time_start":"2000-03-03T12:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086101","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T12:30:00.000Z","id":"G1462778959-LAADS","original_format":"ECHO10","granule_size":"28.2261123657227","browse_flag":true,"polygons":[["83.179621 + -47.632998 69.981291 46.136737 67.718114 98.01679 77.668463 169.131829 83.179621 + -47.632998"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1225.061.2017171220625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1225.061.2017171220625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1225.061.2017171220625.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1225.061.2017272135922.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1230.061.2017171215650.hdf","time_start":"2000-03-03T12:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086102","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T12:35:00.000Z","id":"G1462778958-LAADS","original_format":"ECHO10","granule_size":"155.420767784119","browse_flag":true,"polygons":[["65.660953 + -35.163423 59.265816 10.592449 70.331275 46.016743 83.529226 -52.274498 65.660953 + -35.163423"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1230.061.2017171215650.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1230.061.2017171215650.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1230.061.2017171215650.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1230.061.2017272141124.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1235.061.2017171214750.hdf","time_start":"2000-03-03T12:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084817","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T12:40:00.000Z","id":"G1462778458-LAADS","original_format":"ECHO10","granule_size":"158.50297832489","browse_flag":true,"polygons":[["47.873713 + -35.495266 43.744007 -5.089055 59.571833 10.020978 66.151639 -35.962537 47.873713 + -35.495266"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1235.061.2017171214750.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1235.061.2017171214750.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1235.061.2017171214750.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1235.061.2017272142610.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1240.061.2017171214744.hdf","time_start":"2000-03-03T12:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084818","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T12:45:00.000Z","id":"G1462778459-LAADS","original_format":"ECHO10","granule_size":"162.877446174622","browse_flag":true,"polygons":[["30.056807 + -37.488284 26.793645 -13.517453 43.960843 -5.567208 48.327074 -35.815605 30.056807 + -37.488284"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1240.061.2017171214744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1240.061.2017171214744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1240.061.2017171214744.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1240.061.2017272142830.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1245.061.2017171215709.hdf","time_start":"2000-03-03T12:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085125","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T12:50:00.000Z","id":"G1462778559-LAADS","original_format":"ECHO10","granule_size":"139.598949432373","browse_flag":true,"polygons":[["12.259744 + -40.324225 9.273994 -19.022119 26.948141 -13.85804 30.419736 -37.643017 12.259744 + -40.324225"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1245.061.2017171215709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1245.061.2017171215709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1245.061.2017171215709.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1245.061.2017272142541.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1250.061.2017171215711.hdf","time_start":"2000-03-03T12:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085126","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T12:55:00.000Z","id":"G1462778557-LAADS","original_format":"ECHO10","granule_size":"159.915448188782","browse_flag":true,"polygons":[["-5.439838 + -44.01431 -8.511266 -23.054704 9.381297 -19.205531 12.498547 -40.390838 -5.439838 + -44.01431"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1250.061.2017171215711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1250.061.2017171215711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1250.061.2017171215711.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1250.061.2017272141921.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1255.061.2017171214746.hdf","time_start":"2000-03-03T12:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084460","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T13:00:00.000Z","id":"G1462778258-LAADS","original_format":"ECHO10","granule_size":"157.723998069763","browse_flag":true,"polygons":[["-23.0385 + -49.029452 -26.543338 -26.030045 -8.449353 -22.925359 -5.34353 -44.021705 + -23.0385 -49.029452"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1255.061.2017171214746.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1255.061.2017171214746.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1255.061.2017171214746.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1255.061.2017272141627.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1300.061.2017171214726.hdf","time_start":"2000-03-03T13:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084461","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T13:05:00.000Z","id":"G1462778262-LAADS","original_format":"ECHO10","granule_size":"160.037708282471","browse_flag":true,"polygons":[["-40.122332 + -56.596627 -44.554001 -28.115813 -26.348904 -25.673893 -22.951713 -49.002929 + -40.122332 -56.596627"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1300.061.2017171214726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1300.061.2017171214726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1300.061.2017171214726.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1300.061.2017272142405.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1305.061.2017171214729.hdf","time_start":"2000-03-03T13:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084819","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T13:10:00.000Z","id":"G1462778460-LAADS","original_format":"ECHO10","granule_size":"160.841154098511","browse_flag":true,"polygons":[["-55.997664 + -70.112796 -62.457158 -28.718548 -44.215208 -27.546319 -40.052272 -56.509886 + -55.997664 -70.112796"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1305.061.2017171214729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1305.061.2017171214729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1305.061.2017171214729.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1305.061.2017272143019.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1310.061.2017171215649.hdf","time_start":"2000-03-03T13:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086421","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T13:15:00.000Z","id":"G1462779068-LAADS","original_format":"ECHO10","granule_size":"155.632411956787","browse_flag":true,"polygons":[["-68.229384 + -99.937721 -80.180075 -21.37517 -61.987392 -27.867356 -56.014725 -69.79639 + -68.229384 -99.937721"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1310.061.2017171215649.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1310.061.2017171215649.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1310.061.2017171215649.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1310.061.2017272141808.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1315.061.2017171220837.hdf","time_start":"2000-03-03T13:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086422","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T13:20:00.000Z","id":"G1462779060-LAADS","original_format":"ECHO10","granule_size":"110.091437339783","browse_flag":true,"polygons":[["-69.027041 + -151.070791 -81.28298 123.389666 -79.592075 -20.188054 -68.436412 -99.408247 + -69.027041 -151.070791"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1315.061.2017171220837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1315.061.2017171220837.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1315.061.2017171220837.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1315.061.2017272140122.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1405.061.2017171215623.hdf","time_start":"2000-03-03T14:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086103","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T14:10:00.000Z","id":"G1462778961-LAADS","original_format":"ECHO10","granule_size":"55.2512578964233","browse_flag":true,"polygons":[["79.355837 + -65.292373 68.401797 10.845429 69.602137 63.355106 81.504348 149.977368 79.355837 + -65.292373"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1405.061.2017171215623.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1405.061.2017171215623.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1405.061.2017171215623.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1405.061.2017272140055.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1410.061.2017171215655.hdf","time_start":"2000-03-03T14:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086104","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T14:15:00.000Z","id":"G1462778960-LAADS","original_format":"ECHO10","granule_size":"149.625980377197","browse_flag":true,"polygons":[["61.690396 + -59.683957 56.016979 -18.724188 68.766684 10.518286 79.787812 -67.835112 61.690396 + -59.683957"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1410.061.2017171215655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1410.061.2017171215655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1410.061.2017171215655.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1410.061.2017272141659.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1415.061.2017171220630.hdf","time_start":"2000-03-03T14:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086423","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T14:20:00.000Z","id":"G1462779075-LAADS","original_format":"ECHO10","granule_size":"160.125494003296","browse_flag":true,"polygons":[["43.89212 + -60.57284 40.03223 -32.092082 56.300964 -19.289619 62.178676 -60.317494 43.89212 + -60.57284"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1415.061.2017171220630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1415.061.2017171220630.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1415.061.2017171220630.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1415.061.2017272142335.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1420.061.2017171215424.hdf","time_start":"2000-03-03T14:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085431","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T14:25:00.000Z","id":"G1462778609-LAADS","original_format":"ECHO10","granule_size":"145.400299072266","browse_flag":true,"polygons":[["26.073609 + -62.776581 22.912033 -39.651159 40.233749 -32.543596 44.328363 -60.841868 + 26.073609 -62.776581"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1420.061.2017171215424.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1420.061.2017171215424.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1420.061.2017171215424.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1420.061.2017272141336.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1425.061.2017171214816.hdf","time_start":"2000-03-03T14:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084820","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T14:30:00.000Z","id":"G1462778468-LAADS","original_format":"ECHO10","granule_size":"148.438546180725","browse_flag":true,"polygons":[["8.289015 + -65.782822 5.313668 -44.745392 23.054383 -39.956888 26.410636 -62.902759 8.289015 + -65.782822"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1425.061.2017171214816.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1425.061.2017171214816.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1425.061.2017171214816.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1425.061.2017272141929.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1430.061.2017171214737.hdf","time_start":"2000-03-03T14:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084462","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T14:35:00.000Z","id":"G1462778263-LAADS","original_format":"ECHO10","granule_size":"170.732613563538","browse_flag":true,"polygons":[["-9.403281 + -69.715537 -12.537944 -48.541213 5.411638 -44.885527 8.496922 -65.838017 -9.403281 + -69.715537"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1430.061.2017171214737.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1430.061.2017171214737.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1430.061.2017171214737.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1430.061.2017272142029.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1435.061.2017171214745.hdf","time_start":"2000-03-03T14:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085127","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T14:40:00.000Z","id":"G1462778558-LAADS","original_format":"ECHO10","granule_size":"170.012654304504","browse_flag":true,"polygons":[["-26.916651 + -75.160087 -30.576514 -51.297268 -12.45097 -48.333812 -9.306882 -69.720813 + -26.916651 -75.160087"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1435.061.2017171214745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1435.061.2017171214745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1435.061.2017171214745.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1435.061.2017272141822.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1440.061.2017171214729.hdf","time_start":"2000-03-03T14:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084821","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T14:45:00.000Z","id":"G1462778466-LAADS","original_format":"ECHO10","granule_size":"158.315351486206","browse_flag":true,"polygons":[["-43.814482 + -83.635731 -48.568649 -53.148218 -30.350101 -50.894517 -26.829428 -75.130047 + -43.814482 -83.635731"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1440.061.2017171214729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1440.061.2017171214729.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1440.061.2017171214729.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1440.061.2017272141137.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1445.061.2017171215653.hdf","time_start":"2000-03-03T14:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086105","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T14:50:00.000Z","id":"G1462778968-LAADS","original_format":"ECHO10","granule_size":"156.292778015137","browse_flag":true,"polygons":[["-59.213692 + -99.465476 -66.437856 -53.097553 -48.199843 -52.521805 -43.760829 -83.498193 + -59.213692 -99.465476"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1445.061.2017171215653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1445.061.2017171215653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1445.061.2017171215653.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1445.061.2017272142219.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1450.061.2017171215638.hdf","time_start":"2000-03-03T14:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086424","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T14:55:00.000Z","id":"G1462779077-LAADS","original_format":"ECHO10","granule_size":"156.394132614136","browse_flag":true,"polygons":[["-69.708923 + -134.917953 -83.849431 -37.029996 -65.942619 -52.20084 -59.261306 -99.085991 + -69.708923 -134.917953"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1450.061.2017171215638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1450.061.2017171215638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1450.061.2017171215638.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1450.061.2017272141726.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1455.061.2017171215629.hdf","time_start":"2000-03-03T14:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086106","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T15:00:00.000Z","id":"G1462778963-LAADS","original_format":"ECHO10","granule_size":"80.4139966964722","browse_flag":true,"polygons":[["-67.196445 + 174.498993 -77.43186 103.503584 -83.23198 -36.176685 -69.969739 -134.443183 + -67.196445 174.498993"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1455.061.2017171215629.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1455.061.2017171215629.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1455.061.2017171215629.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1455.061.2017272140145.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1545.061.2017171220652.hdf","time_start":"2000-03-03T15:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086107","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T15:50:00.000Z","id":"G1462778962-LAADS","original_format":"ECHO10","granule_size":"80.2743539810181","browse_flag":true,"polygons":[["75.444143 + -87.033451 66.254394 -22.841893 70.810182 27.423578 85.006278 139.741591 75.444143 + -87.033451"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1545.061.2017171220652.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1545.061.2017171220652.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1545.061.2017171220652.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1545.061.2017272140055.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1550.061.2017171220921.hdf","time_start":"2000-03-03T15:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086425","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T15:55:00.000Z","id":"G1462779072-LAADS","original_format":"ECHO10","granule_size":"155.499033927917","browse_flag":true,"polygons":[["57.720484 + -84.413568 52.617099 -47.282877 66.606915 -23.297047 75.913051 -88.696852 + 57.720484 -84.413568"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1550.061.2017171220921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1550.061.2017171220921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1550.061.2017171220921.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1550.061.2017272141413.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1555.061.2017171220128.hdf","time_start":"2000-03-03T15:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085128","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T16:00:00.000Z","id":"G1462778560-LAADS","original_format":"ECHO10","granule_size":"163.861631393433","browse_flag":true,"polygons":[["39.914022 + -85.702367 36.273962 -58.825755 52.880926 -47.832057 58.203082 -84.913894 + 39.914022 -85.702367"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1555.061.2017171220128.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1555.061.2017171220128.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1555.061.2017171220128.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1555.061.2017272141317.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1600.061.2017171215414.hdf","time_start":"2000-03-03T16:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085129","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T16:05:00.000Z","id":"G1462778562-LAADS","original_format":"ECHO10","granule_size":"138.62100982666","browse_flag":true,"polygons":[["22.098801 + -88.103046 19.012972 -65.661202 36.460392 -59.244576 40.331086 -85.936854 + 22.098801 -88.103046"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1600.061.2017171215414.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1600.061.2017171215414.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1600.061.2017171215414.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1600.061.2017272141126.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1605.061.2017171214814.hdf","time_start":"2000-03-03T16:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085130","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T16:10:00.000Z","id":"G1462778563-LAADS","original_format":"ECHO10","granule_size":"158.012784957886","browse_flag":true,"polygons":[["4.333164 + -91.294863 1.349482 -70.402237 19.144484 -65.934118 22.409109 -88.214235 4.333164 + -91.294863"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1605.061.2017171214814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1605.061.2017171214814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1605.061.2017171214814.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1605.061.2017272141707.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1610.061.2017171214757.hdf","time_start":"2000-03-03T16:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084822","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T16:15:00.000Z","id":"G1462778465-LAADS","original_format":"ECHO10","granule_size":"161.263551712036","browse_flag":true,"polygons":[["-13.343423 + -95.496418 -16.563083 -73.942816 1.433536 -70.462233 4.510369 -91.339328 -13.343423 + -95.496418"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1610.061.2017171214757.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1610.061.2017171214757.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1610.061.2017171214757.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1610.061.2017272141639.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1615.061.2017171214728.hdf","time_start":"2000-03-03T16:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085131","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T16:20:00.000Z","id":"G1462778566-LAADS","original_format":"ECHO10","granule_size":"155.279587745667","browse_flag":true,"polygons":[["-30.761481 + -101.415105 -34.598874 -76.520314 -16.446071 -73.6977 -13.251648 -95.477309 + -30.761481 -101.415105"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1615.061.2017171214728.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1615.061.2017171214728.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1615.061.2017171214728.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1615.061.2017272141748.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1620.061.2017171214950.hdf","time_start":"2000-03-03T16:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085432","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T16:25:00.000Z","id":"G1462778611-LAADS","original_format":"ECHO10","granule_size":"165.914666175842","browse_flag":true,"polygons":[["-47.436306 + -110.989737 -52.569699 -78.100463 -34.340061 -76.071295 -30.675763 -101.38057 + -47.436306 -110.989737"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1620.061.2017171214950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1620.061.2017171214950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1620.061.2017171214950.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1620.061.2017272142218.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1625.061.2017171215638.hdf","time_start":"2000-03-03T16:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086426","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T16:30:00.000Z","id":"G1462779070-LAADS","original_format":"ECHO10","granule_size":"163.829423904419","browse_flag":true,"polygons":[["-62.212658 + -129.758167 -70.396904 -77.096144 -52.1708 -77.414323 -47.398434 -110.809118 + -62.212658 -129.758167"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1625.061.2017171215638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1625.061.2017171215638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1625.061.2017171215638.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1625.061.2017272142727.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1630.061.2017171215654.hdf","time_start":"2000-03-03T16:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086427","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T16:35:00.000Z","id":"G1462779074-LAADS","original_format":"ECHO10","granule_size":"152.320199012756","browse_flag":true,"polygons":[["-70.512233 + -171.304337 -86.95105 -29.004667 -69.877296 -76.137965 -62.297325 -129.314307 + -70.512233 -171.304337"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1630.061.2017171215654.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1630.061.2017171215654.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1630.061.2017171215654.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1630.061.2017272141046.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1635.061.2017171215619.hdf","time_start":"2000-03-03T16:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085787","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T16:40:00.000Z","id":"G1462778819-LAADS","original_format":"ECHO10","granule_size":"52.9035081863403","browse_flag":true,"polygons":[["-64.920896 + 141.792879 -73.617455 80.945176 -86.36871 -33.15772 -70.825613 -170.970495 + -64.920896 141.792879"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1635.061.2017171215619.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1635.061.2017171215619.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1635.061.2017171215619.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1635.061.2017272135903.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1725.061.2017171220130.hdf","time_start":"2000-03-03T17:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086108","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T17:30:00.000Z","id":"G1462778971-LAADS","original_format":"ECHO10","granule_size":"109.090251922607","browse_flag":true,"polygons":[["71.599192 + -110.283423 63.727153 -54.817401 71.251424 -9.741381 87.1939 167.148047 71.599192 + -110.283423"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1725.061.2017171220130.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1725.061.2017171220130.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1725.061.2017171220130.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1725.061.2017272140345.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1730.061.2017171215715.hdf","time_start":"2000-03-03T17:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086428","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T17:35:00.000Z","id":"G1462779069-LAADS","original_format":"ECHO10","granule_size":"155.422671318054","browse_flag":true,"polygons":[["53.752488 + -109.260284 49.103877 -75.250433 64.062782 -55.345309 72.080329 -111.494713 + 53.752488 -109.260284"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1730.061.2017171215715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1730.061.2017171215715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1730.061.2017171215715.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1730.061.2017272141517.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1735.061.2017171215745.hdf","time_start":"2000-03-03T17:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086109","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T17:40:00.000Z","id":"G1462778969-LAADS","original_format":"ECHO10","granule_size":"160.216607093811","browse_flag":true,"polygons":[["35.940622 + -110.850105 32.480253 -85.349058 49.351706 -75.787641 54.225629 -109.636899 + 35.940622 -110.850105"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1735.061.2017171215745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1735.061.2017171215745.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1735.061.2017171215745.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1735.061.2017272141402.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1740.061.2017171215726.hdf","time_start":"2000-03-03T17:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086110","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T17:45:00.000Z","id":"G1462778966-LAADS","original_format":"ECHO10","granule_size":"159.189240455627","browse_flag":true,"polygons":[["18.134453 + -113.467478 15.100691 -91.575236 32.651221 -85.730635 36.334474 -111.087737 + 18.134453 -113.467478"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1740.061.2017171215726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1740.061.2017171215726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1740.061.2017171215726.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1740.061.2017272141140.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1745.061.2017171214803.hdf","time_start":"2000-03-03T17:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084823","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T17:50:00.000Z","id":"G1462778464-LAADS","original_format":"ECHO10","granule_size":"147.620154380798","browse_flag":true,"polygons":[["0.382884 + -116.851183 -2.616459 -96.019484 15.223742 -91.827799 18.419162 -113.559943 + 0.382884 -116.851183"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1745.061.2017171214803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1745.061.2017171214803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1745.061.2017171214803.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1745.061.2017272141143.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1750.061.2017171214801.hdf","time_start":"2000-03-03T17:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085132","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T17:55:00.000Z","id":"G1462778567-LAADS","original_format":"ECHO10","granule_size":"161.556730270386","browse_flag":true,"polygons":[["-17.264656 + -121.351329 -20.585946 -99.310709 -2.545584 -95.989173 0.533306 -116.882103 + -17.264656 -121.351329"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1750.061.2017171214801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1750.061.2017171214801.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1750.061.2017171214801.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1750.061.2017272142341.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1755.061.2017171214805.hdf","time_start":"2000-03-03T17:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084824","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T18:00:00.000Z","id":"G1462778472-LAADS","original_format":"ECHO10","granule_size":"143.048476219177","browse_flag":true,"polygons":[["-34.564079 + -127.852623 -38.613682 -101.699253 -20.437431 -99.021963 -17.173697 -121.329928 + -34.564079 -127.852623"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1755.061.2017171214805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1755.061.2017171214805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1755.061.2017171214805.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1755.061.2017272141301.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1800.061.2017171214812.hdf","time_start":"2000-03-03T18:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084825","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T18:05:00.000Z","id":"G1462778471-LAADS","original_format":"ECHO10","granule_size":"162.82995891571","browse_flag":true,"polygons":[["-50.971509 + -138.756489 -56.560761 -102.953703 -38.322861 -101.202553 -34.485826 -127.79211 + -50.971509 -138.756489"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1800.061.2017171214812.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1800.061.2017171214812.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1800.061.2017171214812.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1800.061.2017272142657.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1805.061.2017171215710.hdf","time_start":"2000-03-03T18:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086111","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T18:10:00.000Z","id":"G1462778964-LAADS","original_format":"ECHO10","granule_size":"160.131988525391","browse_flag":true,"polygons":[["-64.923784 + -161.232572 -74.33506 -100.483339 -56.132768 -102.221089 -50.952259 -138.527052 + -64.923784 -161.232572"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1805.061.2017171215710.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1805.061.2017171215710.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1805.061.2017171215710.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1805.061.2017272143023.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1810.061.2017171215649.hdf","time_start":"2000-03-03T18:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086112","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T18:15:00.000Z","id":"G1462778975-LAADS","original_format":"ECHO10","granule_size":"146.567562103271","browse_flag":true,"polygons":[["-70.512545 + 151.850373 -86.493297 19.785839 -73.790234 -99.4161 -65.051988 -160.731581 + -70.512545 151.850373"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1810.061.2017171215649.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1810.061.2017171215649.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1810.061.2017171215649.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1810.061.2017272140651.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1815.061.2017171220547.hdf","time_start":"2000-03-03T18:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086429","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T18:20:00.000Z","id":"G1462779076-LAADS","original_format":"ECHO10","granule_size":"26.2818574905396","browse_flag":true,"polygons":[["-62.239229 + 110.252867 -69.69112 57.403444 -86.542809 9.422193 -70.902411 151.950274 -62.239229 + 110.252867"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1815.061.2017171220547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1815.061.2017171220547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1815.061.2017171220547.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1815.061.2017272135911.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1900.061.2017171215559.hdf","time_start":"2000-03-03T19:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086113","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T19:05:00.000Z","id":"G1462778967-LAADS","original_format":"ECHO10","granule_size":"19.1082458496094","browse_flag":true,"polygons":[["84.995594 + -154.451639 70.483108 -46.912102 66.552621 3.430246 75.719504 68.735271 84.995594 + -154.451639"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1900.061.2017171215559.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1900.061.2017171215559.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1900.061.2017171215559.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1900.061.2017272140044.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1905.061.2017171215648.hdf","time_start":"2000-03-03T19:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086430","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T19:10:00.000Z","id":"G1462779080-LAADS","original_format":"ECHO10","granule_size":"138.012440681458","browse_flag":true,"polygons":[["67.640649 + -134.272709 60.844135 -85.715509 70.883633 -46.964118 85.247919 -161.436683 + 67.640649 -134.272709"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1905.061.2017171215648.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1905.061.2017171215648.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1905.061.2017171215648.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1905.061.2017272140656.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1910.061.2017171215707.hdf","time_start":"2000-03-03T19:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086431","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T19:15:00.000Z","id":"G1462779073-LAADS","original_format":"ECHO10","granule_size":"163.244583129883","browse_flag":true,"polygons":[["49.867051 + -134.235429 45.57773 -102.707802 61.132698 -86.210257 68.133836 -135.179084 + 49.867051 -134.235429"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1910.061.2017171215707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1910.061.2017171215707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1910.061.2017171215707.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1910.061.2017272141531.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1915.061.2017171214813.hdf","time_start":"2000-03-03T19:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084826","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T19:20:00.000Z","id":"G1462778473-LAADS","original_format":"ECHO10","granule_size":"167.105529785156","browse_flag":true,"polygons":[["31.959757 + -136.121028 28.64652 -111.698492 45.810628 -103.228235 50.328235 -134.59302 + 31.959757 -136.121028"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1915.061.2017171214813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1915.061.2017171214813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1915.061.2017171214813.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1915.061.2017272141956.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1920.061.2017171215913.hdf","time_start":"2000-03-03T19:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084827","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T19:25:00.000Z","id":"G1462778479-LAADS","original_format":"ECHO10","granule_size":"163.177304267883","browse_flag":true,"polygons":[["14.160204 + -138.868858 11.164611 -117.403004 28.80236 -112.037297 32.336688 -136.283925 + 14.160204 -138.868858"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1920.061.2017171215913.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1920.061.2017171215913.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1920.061.2017171215913.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1920.061.2017272142557.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1925.061.2017171215810.hdf","time_start":"2000-03-03T19:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086432","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T19:30:00.000Z","id":"G1462779078-LAADS","original_format":"ECHO10","granule_size":"151.62965297699","browse_flag":true,"polygons":[["-3.552837 + -142.457928 -6.59963 -121.558907 11.276498 -117.606335 14.413864 -138.946947 + -3.552837 -142.457928"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1925.061.2017171215810.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1925.061.2017171215810.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1925.061.2017171215810.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1925.061.2017272140934.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1930.061.2017171215737.hdf","time_start":"2000-03-03T19:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086433","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T19:35:00.000Z","id":"G1462779079-LAADS","original_format":"ECHO10","granule_size":"157.840816497803","browse_flag":true,"polygons":[["-21.172276 + -147.301557 -24.614324 -124.638945 -6.536184 -121.465758 -3.44114 -142.479173 + -21.172276 -147.301557"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1930.061.2017171215737.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1930.061.2017171215737.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1930.061.2017171215737.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1930.061.2017272142226.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1935.061.2017171220941.hdf","time_start":"2000-03-03T19:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086752","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T19:40:00.000Z","id":"G1462779104-LAADS","original_format":"ECHO10","granule_size":"150.700222015381","browse_flag":true,"polygons":[["-38.330837 + -154.494817 -42.630463 -126.828341 -24.434436 -124.306335 -21.082519 -147.27766 + -38.330837 -154.494817"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1935.061.2017171220941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1935.061.2017171220941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1935.061.2017171220941.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1935.061.2017272141900.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1940.061.2017171221032.hdf","time_start":"2000-03-03T19:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086753","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T19:45:00.000Z","id":"G1462779105-LAADS","original_format":"ECHO10","granule_size":"164.580188751221","browse_flag":true,"polygons":[["-54.402847 + -167.056217 -60.549867 -127.668535 -42.308037 -126.280384 -38.26135 -154.40556 + -54.402847 -167.056217"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1940.061.2017171221032.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1940.061.2017171221032.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1940.061.2017171221032.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1940.061.2017272142841.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1945.061.2017171220510.hdf","time_start":"2000-03-03T19:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087401","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T19:50:00.000Z","id":"G1462779142-LAADS","original_format":"ECHO10","granule_size":"160.216009140015","browse_flag":true,"polygons":[["-67.248639 + 165.85926 -78.247514 -122.655282 -60.094437 -126.912469 -54.405713 -166.77237 + -67.248639 165.85926"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1945.061.2017171220510.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1945.061.2017171220510.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1945.061.2017171220510.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1945.061.2017272142845.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.1950.061.2017171220508.hdf","time_start":"2000-03-03T19:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087402","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T19:55:00.000Z","id":"G1462779143-LAADS","original_format":"ECHO10","granule_size":"120.840741157532","browse_flag":true,"polygons":[["-69.7076 + 115.462664 -83.156561 19.788069 -77.671081 -121.356433 -67.427371 166.398198 + -69.7076 115.462664"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1950.061.2017171220508.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.1950.061.2017171220508.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.1950.061.2017171220508.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.1950.061.2017272140720.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2040.061.2017171215642.hdf","time_start":"2000-03-03T20:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085788","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T20:45:00.000Z","id":"G1462778820-LAADS","original_format":"ECHO10","granule_size":"39.819785118103","browse_flag":true,"polygons":[["81.287289 + -166.879797 69.29187 -82.959635 68.748852 -30.316315 79.595883 47.741146 81.287289 + -166.879797"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2040.061.2017171215642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2040.061.2017171215642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2040.061.2017171215642.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2040.061.2017272140049.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2045.061.2017171215725.hdf","time_start":"2000-03-03T20:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086434","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T20:50:00.000Z","id":"G1462779090-LAADS","original_format":"ECHO10","granule_size":"145.324213027954","browse_flag":true,"polygons":[["63.679485 + -158.635887 57.66774 -115.415706 69.636263 -83.169418 81.690956 -170.204186 + 63.679485 -158.635887"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2045.061.2017171215725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2045.061.2017171215725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2045.061.2017171215725.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2045.061.2017272141016.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2050.061.2017171215723.hdf","time_start":"2000-03-03T20:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086435","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T20:55:00.000Z","id":"G1462779081-LAADS","original_format":"ECHO10","granule_size":"156.079423904419","browse_flag":true,"polygons":[["45.886047 + -159.272441 41.900941 -129.8793 57.96526 -115.993683 64.170063 -159.349543 + 45.886047 -159.272441"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2050.061.2017171215723.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2050.061.2017171215723.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2050.061.2017171215723.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2050.061.2017272142209.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2055.061.2017171220743.hdf","time_start":"2000-03-03T20:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086114","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T21:00:00.000Z","id":"G1462778965-LAADS","original_format":"ECHO10","granule_size":"153.325524330139","browse_flag":true,"polygons":[["28.068351 + -161.373157 24.859635 -137.845056 42.107974 -130.336664 46.331387 -159.565406 + 28.068351 -161.373157"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2055.061.2017171220743.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2055.061.2017171220743.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2055.061.2017171220743.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2055.061.2017272142911.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2100.061.2017171221019.hdf","time_start":"2000-03-03T21:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086754","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T21:05:00.000Z","id":"G1462779107-LAADS","original_format":"ECHO10","granule_size":"149.867153167725","browse_flag":true,"polygons":[["10.188498 + -164.310548 7.211359 -143.161243 25.007924 -138.169374 28.418776 -161.518127 + 10.188498 -164.310548"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2100.061.2017171221019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2100.061.2017171221019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2100.061.2017171221019.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2100.061.2017272141520.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2105.061.2017171215710.hdf","time_start":"2000-03-03T21:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086436","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T21:10:00.000Z","id":"G1462779084-LAADS","original_format":"ECHO10","granule_size":"153.186970710754","browse_flag":true,"polygons":[["-7.506804 + -168.128242 -10.608362 -147.072664 7.315029 -143.327337 10.412782 -164.37534 + -7.506804 -168.128242"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2105.061.2017171215710.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2105.061.2017171215710.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2105.061.2017171215710.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2105.061.2017272141508.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2110.061.2017171220946.hdf","time_start":"2000-03-03T21:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086755","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T21:15:00.000Z","id":"G1462779101-LAADS","original_format":"ECHO10","granule_size":"155.942430496216","browse_flag":true,"polygons":[["-25.063348 + -173.360169 -28.646479 -149.928267 -10.534854 -146.897173 -7.410724 -168.134576 + -25.063348 -173.360169"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2110.061.2017171220946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2110.061.2017171220946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2110.061.2017171220946.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2110.061.2017272142038.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2115.061.2017171215731.hdf","time_start":"2000-03-03T21:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086437","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T21:20:00.000Z","id":"G1462779088-LAADS","original_format":"ECHO10","granule_size":"156.606382369995","browse_flag":true,"polygons":[["-42.053016 + 178.617217 -46.64741 -151.898606 -28.435189 -149.55024 -24.974702 -173.333714 + -42.053016 178.617217"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2115.061.2017171215731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2115.061.2017171215731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2115.061.2017171215731.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2115.061.2017272142247.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2120.061.2017171215703.hdf","time_start":"2000-03-03T21:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086438","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T21:25:00.000Z","id":"G1462779086-LAADS","original_format":"ECHO10","granule_size":"164.541023254395","browse_flag":true,"polygons":[["-57.69951 + 163.97309 -64.534267 -152.18396 -46.293542 -151.295748 -41.994895 178.739442 + -57.69951 163.97309"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2120.061.2017171215703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2120.061.2017171215703.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2120.061.2017171215703.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2120.061.2017272143044.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2125.061.2017171215725.hdf","time_start":"2000-03-03T21:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086756","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T21:30:00.000Z","id":"G1462779102-LAADS","original_format":"ECHO10","granule_size":"156.437585830688","browse_flag":true,"polygons":[["-69.062017 + 131.390094 -82.074385 -141.363216 -64.050287 -151.282283 -57.729468 164.316523 + -69.062017 131.390094"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2125.061.2017171215725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2125.061.2017171215725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2125.061.2017171215725.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2125.061.2017272142214.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2130.061.2017171215727.hdf","time_start":"2000-03-03T21:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086439","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T21:35:00.000Z","id":"G1462779082-LAADS","original_format":"ECHO10","granule_size":"86.6051158905029","browse_flag":true,"polygons":[["-68.228115 + 80.213315 -79.36264 2.616747 -81.469422 -140.264034 -69.343399 131.94775 -68.228115 + 80.213315"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2130.061.2017171215727.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2130.061.2017171215727.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2130.061.2017171215727.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2130.061.2017272140139.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2220.061.2017171215426.hdf","time_start":"2000-03-03T22:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085433","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T22:25:00.000Z","id":"G1462778606-LAADS","original_format":"ECHO10","granule_size":"62.4945917129517","browse_flag":true,"polygons":[["77.408111 + 172.886731 67.391647 -117.445395 70.307147 -65.815039 83.352238 31.741264 + 77.408111 172.886731"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2220.061.2017171215426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2220.061.2017171215426.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2220.061.2017171215426.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2220.061.2017272140203.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2225.061.2017171220152.hdf","time_start":"2000-03-03T22:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085133","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T22:30:00.000Z","id":"G1462778568-LAADS","original_format":"ECHO10","granule_size":"154.34147644043","browse_flag":true,"polygons":[["59.70493 + 176.735314 54.337027 -144.342631 67.757611 -117.855722 77.861231 170.864966 + 59.70493 176.735314"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2225.061.2017171220152.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2225.061.2017171220152.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2225.061.2017171220152.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2225.061.2017272141252.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2230.061.2017171214849.hdf","time_start":"2000-03-03T22:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085134","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T22:35:00.000Z","id":"G1462778569-LAADS","original_format":"ECHO10","granule_size":"155.036242485046","browse_flag":true,"polygons":[["41.902364 + 175.625496 38.158067 -156.735882 54.607231 -144.890633 60.191472 176.168574 + 41.902364 175.625496"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2230.061.2017171214849.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2230.061.2017171214849.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2230.061.2017171214849.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2230.061.2017272142728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2235.061.2017171214841.hdf","time_start":"2000-03-03T22:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085135","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T22:40:00.000Z","id":"G1462778565-LAADS","original_format":"ECHO10","granule_size":"160.542450904846","browse_flag":true,"polygons":[["24.084006 + 173.322774 20.96382 -163.918078 38.352126 -157.171954 42.329235 175.378112 + 24.084006 173.322774"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2235.061.2017171214841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2235.061.2017171214841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2235.061.2017171214841.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2235.061.2017272142845.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2240.061.2017171220240.hdf","time_start":"2000-03-03T22:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085434","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T22:45:00.000Z","id":"G1462778613-LAADS","original_format":"ECHO10","granule_size":"142.107069015503","browse_flag":true,"polygons":[["6.307955 + 170.221355 3.330716 -168.831577 21.10067 -164.208631 24.408128 173.202283 + 6.307955 170.221355"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2240.061.2017171220240.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2240.061.2017171220240.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2240.061.2017171220240.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2240.061.2017272141357.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2245.061.2017171214843.hdf","time_start":"2000-03-03T22:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085136","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T22:50:00.000Z","id":"G1462778570-LAADS","original_format":"ECHO10","granule_size":"151.091282844543","browse_flag":true,"polygons":[["-11.464752 + 166.131948 -14.642526 -172.51094 3.420407 -168.925516 6.501118 170.167115 + -11.464752 166.131948"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2245.061.2017171214843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2245.061.2017171214843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2245.061.2017171214843.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2245.061.2017272141242.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2250.061.2017171214828.hdf","time_start":"2000-03-03T22:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084828","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T22:55:00.000Z","id":"G1462778480-LAADS","original_format":"ECHO10","granule_size":"153.753023147583","browse_flag":true,"polygons":[["-28.932046 + 160.451922 -32.680906 -175.175713 -14.539743 -172.283982 -11.371831 166.143322 + -28.932046 160.451922"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2250.061.2017171214828.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2250.061.2017171214828.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2250.061.2017171214828.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2250.061.2017272141857.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2255.061.2017171214835.hdf","time_start":"2000-03-03T22:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085137","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T23:00:00.000Z","id":"G1462778573-LAADS","original_format":"ECHO10","granule_size":"157.616478919983","browse_flag":true,"polygons":[["-45.717698 + 151.424741 -50.662495 -176.894656 -32.437244 -174.749746 -28.844282 160.481494 + -45.717698 151.424741"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2255.061.2017171214835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2255.061.2017171214835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2255.061.2017171214835.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2255.061.2017272142501.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2300.061.2017171214844.hdf","time_start":"2000-03-03T23:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085138","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T23:05:00.000Z","id":"G1462778571-LAADS","original_format":"ECHO10","granule_size":"160.005635261536","browse_flag":true,"polygons":[["-60.813081 + 134.144493 -68.511411 -176.392223 -50.27806 -176.232373 -45.672813 151.585567 + -60.813081 134.144493"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2300.061.2017171214844.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2300.061.2017171214844.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2300.061.2017171214844.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2300.061.2017272142940.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2305.061.2017171215803.hdf","time_start":"2000-03-03T23:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085789","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-03T23:10:00.000Z","id":"G1462778822-LAADS","original_format":"ECHO10","granule_size":"139.166229248047","browse_flag":true,"polygons":[["-70.22196 + 95.487976 -85.625979 -149.013764 -67.999574 -175.377342 -60.877207 134.553828 + -70.22196 95.487976"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2305.061.2017171215803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2305.061.2017171215803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2305.061.2017171215803.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2305.061.2017272140909.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000063.2310.061.2017171214833.hdf","time_start":"2000-03-03T23:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084829","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-03T23:15:00.000Z","id":"G1462778478-LAADS","original_format":"ECHO10","granule_size":"61.0341548919678","browse_flag":true,"polygons":[["-66.128322 + 46.533371 -75.466125 -18.987203 -84.986648 -149.330596 -70.570732 95.925809 + -66.128322 46.533371"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2310.061.2017171214833.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000063.2310.061.2017171214833.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/063/MOD02QKM.A2000063.2310.061.2017171214833.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/063/MOBRGB.A2000063.2310.061.2017272140057.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0000.061.2017171214848.hdf","time_start":"2000-03-04T00:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085139","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T00:05:00.000Z","id":"G1462781623-LAADS","original_format":"ECHO10","granule_size":"89.4967555999756","browse_flag":true,"polygons":[["73.473237 + 150.245012 65.002266 -150.34918 71.147128 -102.633522 86.534366 35.47896 73.473237 + 150.245012"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0000.061.2017171214848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0000.061.2017171214848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0000.061.2017171214848.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0000.061.2017272140438.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0005.061.2017171214855.hdf","time_start":"2000-03-04T00:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085140","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T00:10:00.000Z","id":"G1462781624-LAADS","original_format":"ECHO10","granule_size":"157.949016571045","browse_flag":true,"polygons":[["55.726372 + 151.938878 50.865967 -172.593264 65.349082 -150.853607 73.949904 148.859724 + 55.726372 151.938878"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0005.061.2017171214855.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0005.061.2017171214855.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0005.061.2017171214855.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0005.061.2017272141927.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0010.061.2017171214840.hdf","time_start":"2000-03-04T00:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085141","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T00:15:00.000Z","id":"G1462781633-LAADS","original_format":"ECHO10","granule_size":"167.429337501526","browse_flag":true,"polygons":[["37.915756 + 150.46674 34.370031 176.636938 51.118916 -173.12828 56.204387 151.476039 37.915756 + 150.46674"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0010.061.2017171214840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0010.061.2017171214840.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0010.061.2017171214840.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0010.061.2017272142616.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0015.061.2017171214918.hdf","time_start":"2000-03-04T00:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085142","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T00:20:00.000Z","id":"G1462781631-LAADS","original_format":"ECHO10","granule_size":"163.177268981934","browse_flag":true,"polygons":[["20.100386 + 147.978701 17.045818 170.116208 34.549368 176.233157 38.322632 150.257541 + 20.100386 147.978701"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0015.061.2017171214918.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0015.061.2017171214918.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0015.061.2017171214918.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0015.061.2017272142709.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0020.061.2017171215534.hdf","time_start":"2000-03-04T00:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085435","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T00:25:00.000Z","id":"G1462781667-LAADS","original_format":"ECHO10","granule_size":"158.416897773743","browse_flag":true,"polygons":[["2.34503 + 144.690447 -0.647771 165.535083 17.171913 169.860577 20.396957 147.876638 + 2.34503 144.690447"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0020.061.2017171215534.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0020.061.2017171215534.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0020.061.2017171215534.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0020.061.2017272142558.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0025.061.2017171220243.hdf","time_start":"2000-03-04T00:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085436","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T00:30:00.000Z","id":"G1462781673-LAADS","original_format":"ECHO10","granule_size":"154.936923980713","browse_flag":true,"polygons":[["-15.322008 + 140.339151 -18.590259 162.114576 -0.569743 165.514955 2.505498 144.650079 + -15.322008 140.339151"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0025.061.2017171220243.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0025.061.2017171220243.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0025.061.2017171220243.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0025.061.2017272141926.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0030.061.2017171214939.hdf","time_start":"2000-03-04T00:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085437","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T00:35:00.000Z","id":"G1462781668-LAADS","original_format":"ECHO10","granule_size":"161.432570457458","browse_flag":true,"polygons":[["-32.768196 + 134.102377 -36.713121 159.622203 -18.458462 162.38967 -15.23091 140.359335 + -32.768196 134.102377"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0030.061.2017171214939.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0030.061.2017171214939.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0030.061.2017171214939.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0030.061.2017272141249.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0035.061.2017171214858.hdf","time_start":"2000-03-04T00:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085143","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T00:40:00.000Z","id":"G1462781625-LAADS","original_format":"ECHO10","granule_size":"161.365266799927","browse_flag":true,"polygons":[["-49.307025 + 123.855507 -54.671114 158.202052 -36.436635 160.096504 -32.684086 134.143782 + -49.307025 123.855507"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0035.061.2017171214858.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0035.061.2017171214858.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0035.061.2017171214858.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0035.061.2017272142500.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0040.061.2017171215909.hdf","time_start":"2000-03-04T00:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085438","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T00:45:00.000Z","id":"G1462781675-LAADS","original_format":"ECHO10","granule_size":"159.137063980103","browse_flag":true,"polygons":[["-63.678797 + 103.240459 -72.476287 159.769797 -54.257566 158.857798 -49.278959 124.062005 + -63.678797 103.240459"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0040.061.2017171215909.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0040.061.2017171215909.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0040.061.2017171215909.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0040.061.2017272142742.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0045.061.2017171214924.hdf","time_start":"2000-03-04T00:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085144","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T00:50:00.000Z","id":"G1462781628-LAADS","original_format":"ECHO10","granule_size":"131.353336334229","browse_flag":true,"polygons":[["-70.609412 + 58.712822 -87.371667 -110.70002 -71.94074 160.880646 -63.781002 103.71904 + -70.609412 58.712822"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0045.061.2017171214924.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0045.061.2017171214924.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0045.061.2017171214924.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0045.061.2017272140527.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0050.061.2017171214848.hdf","time_start":"2000-03-04T00:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084830","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T00:55:00.000Z","id":"G1462781569-LAADS","original_format":"ECHO10","granule_size":"37.5534029006958","browse_flag":true,"polygons":[["-63.574339 + 14.386923 -71.54454 -42.123716 -87.006087 -122.097039 -71.001957 58.928249 + -63.574339 14.386923"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0050.061.2017171214848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0050.061.2017171214848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0050.061.2017171214848.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0050.061.2017272140307.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0140.061.2017171214936.hdf","time_start":"2000-03-04T01:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085145","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T01:45:00.000Z","id":"G1462781627-LAADS","original_format":"ECHO10","granule_size":"119.355986595154","browse_flag":true,"polygons":[["69.518963 + 126.571871 62.232902 178.204573 71.145689 -139.976579 86.586203 81.035558 + 69.518963 126.571871"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0140.061.2017171214936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0140.061.2017171214936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0140.061.2017171214936.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0140.061.2017272141106.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0145.061.2017171214930.hdf","time_start":"2000-03-04T01:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085146","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T01:50:00.000Z","id":"G1462781629-LAADS","original_format":"ECHO10","granule_size":"164.023391723633","browse_flag":true,"polygons":[["51.747831 + 127.025392 47.294566 159.678211 62.556795 177.657259 70.00601 125.557643 51.747831 + 127.025392"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0145.061.2017171214930.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0145.061.2017171214930.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0145.061.2017171214930.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0145.061.2017272141632.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0150.061.2017171214926.hdf","time_start":"2000-03-04T01:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085147","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T01:55:00.000Z","id":"G1462781632-LAADS","original_format":"ECHO10","granule_size":"158.732676506042","browse_flag":true,"polygons":[["33.932369 + 125.256856 30.54625 150.209715 47.530749 159.16374 52.213385 126.633156 33.932369 + 125.256856"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0150.061.2017171214926.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0150.061.2017171214926.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0150.061.2017171214926.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0150.061.2017272142913.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0155.061.2017171214941.hdf","time_start":"2000-03-04T01:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085148","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T02:00:00.000Z","id":"G1462781626-LAADS","original_format":"ECHO10","granule_size":"156.93417263031","browse_flag":true,"polygons":[["16.122894 + 122.593156 13.113665 144.245268 30.712284 149.838028 34.316888 125.079437 + 16.122894 122.593156"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0155.061.2017171214941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0155.061.2017171214941.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0155.061.2017171214941.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0155.061.2017272142505.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0200.061.2017171214937.hdf","time_start":"2000-03-04T02:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085439","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T02:05:00.000Z","id":"G1462781666-LAADS","original_format":"ECHO10","granule_size":"163.233420372009","browse_flag":true,"polygons":[["-1.606013 + 119.10713 -4.629773 139.956808 13.230266 144.024311 16.391203 122.507461 -1.606013 + 119.10713"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0200.061.2017171214937.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0200.061.2017171214937.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0200.061.2017171214937.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0200.061.2017272142641.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0205.061.2017171215852.hdf","time_start":"2000-03-04T02:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085790","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T02:10:00.000Z","id":"G1462781752-LAADS","original_format":"ECHO10","granule_size":"164.628631591797","browse_flag":true,"polygons":[["-19.244409 + 114.435831 -22.617193 136.762657 -4.562772 140.008418 -1.471535 119.080355 + -19.244409 114.435831"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0205.061.2017171215852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0205.061.2017171215852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0205.061.2017171215852.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0205.061.2017272143234.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0210.061.2017171220215.hdf","time_start":"2000-03-04T02:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085149","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T02:15:00.000Z","id":"G1462781630-LAADS","original_format":"ECHO10","granule_size":"160.732385635376","browse_flag":true,"polygons":[["-36.476363 + 107.59913 -40.645807 134.478979 -22.459359 137.080165 -19.15358 114.458323 + -36.476363 107.59913"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0210.061.2017171220215.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0210.061.2017171220215.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0210.061.2017171220215.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0210.061.2017272141731.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0215.061.2017171214935.hdf","time_start":"2000-03-04T02:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085440","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T02:20:00.000Z","id":"G1462781674-LAADS","original_format":"ECHO10","granule_size":"167.429469108582","browse_flag":true,"polygons":[["-52.799446 + 95.82298 -58.669959 133.418063 -40.340145 135.008506 -36.401856 107.671599 + -52.799446 95.82298"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0215.061.2017171214935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0215.061.2017171214935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0215.061.2017171214935.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0215.061.2017272142931.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0220.061.2017171214922.hdf","time_start":"2000-03-04T02:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085441","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T02:25:00.000Z","id":"G1462781672-LAADS","original_format":"ECHO10","granule_size":"154.601536750793","browse_flag":true,"polygons":[["-66.208411 + 71.028073 -76.411094 136.904155 -58.226958 134.11118 -52.791786 96.079574 + -66.208411 71.028073"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0220.061.2017171214922.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0220.061.2017171214922.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0220.061.2017171214922.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0220.061.2017272142214.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0225.061.2017171214917.hdf","time_start":"2000-03-04T02:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085150","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T02:30:00.000Z","id":"G1462781636-LAADS","original_format":"ECHO10","granule_size":"127.202391624451","browse_flag":true,"polygons":[["-70.181565 + 21.96711 -84.833025 -86.904858 -75.842545 138.296968 -66.357996 71.556702 + -70.181565 21.96711"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0225.061.2017171214917.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0225.061.2017171214917.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0225.061.2017171214917.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0225.061.2017272140522.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0315.061.2017171214925.hdf","time_start":"2000-03-04T03:15:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085151","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T03:20:00.000Z","id":"G1462781634-LAADS","original_format":"ECHO10","granule_size":"28.8130683898926","browse_flag":true,"polygons":[["83.085825 + 90.140333 69.936181 -176.639878 67.762726 -124.727527 77.774118 -53.253326 + 83.085825 90.140333"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0315.061.2017171214925.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0315.061.2017171214925.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0315.061.2017171214925.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0315.061.2017272140537.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0320.061.2017171215938.hdf","time_start":"2000-03-04T03:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085442","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T03:25:00.000Z","id":"G1462781669-LAADS","original_format":"ECHO10","granule_size":"142.762994766235","browse_flag":true,"polygons":[["65.557248 + 102.368744 59.183975 147.967506 70.300415 -176.777865 83.437459 85.665145 + 65.557248 102.368744"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0320.061.2017171215938.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0320.061.2017171215938.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0320.061.2017171215938.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0320.061.2017272141348.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0325.061.2017171215000.hdf","time_start":"2000-03-04T03:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085152","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T03:30:00.000Z","id":"G1462781635-LAADS","original_format":"ECHO10","granule_size":"162.990378379822","browse_flag":true,"polygons":[["47.770949 + 102.053997 43.647098 132.357691 59.48758 147.400547 66.047835 101.642281 47.770949 + 102.053997"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0325.061.2017171215000.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0325.061.2017171215000.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0325.061.2017171215000.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0325.061.2017272141914.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0330.061.2017171215002.hdf","time_start":"2000-03-04T03:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085443","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T03:35:00.000Z","id":"G1462781670-LAADS","original_format":"ECHO10","granule_size":"159.854828834534","browse_flag":true,"polygons":[["29.951025 + 100.102746 26.693412 123.947634 43.865729 131.87236 48.217274 101.811574 29.951025 + 100.102746"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0330.061.2017171215002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0330.061.2017171215002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0330.061.2017171215002.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0330.061.2017272142244.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0335.061.2017171214938.hdf","time_start":"2000-03-04T03:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085444","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T03:40:00.000Z","id":"G1462781678-LAADS","original_format":"ECHO10","granule_size":"164.614134788513","browse_flag":true,"polygons":[["12.162494 + 97.168593 9.169831 118.457961 26.846487 123.61085 30.303231 99.852001 12.162494 + 97.168593"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0335.061.2017171214938.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0335.061.2017171214938.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0335.061.2017171214938.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0335.061.2017272142327.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0340.061.2017171214936.hdf","time_start":"2000-03-04T03:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085153","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T03:45:00.000Z","id":"G1462781637-LAADS","original_format":"ECHO10","granule_size":"161.681467056274","browse_flag":true,"polygons":[["-5.546009 + 93.466513 -8.616597 114.429579 9.277447 118.272592 12.39349 97.096117 -5.546009 + 93.466513"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0340.061.2017171214936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0340.061.2017171214936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0340.061.2017171214936.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0340.061.2017272142126.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0345.061.2017171215003.hdf","time_start":"2000-03-04T03:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085154","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T03:50:00.000Z","id":"G1462781638-LAADS","original_format":"ECHO10","granule_size":"162.503395080566","browse_flag":true,"polygons":[["-23.141686 + 88.432651 -26.651458 111.464724 -8.555647 114.565133 -5.447977 93.451646 -23.141686 + 88.432651"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0345.061.2017171215003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0345.061.2017171215003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0345.061.2017171215003.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0345.061.2017272143341.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0350.061.2017171215019.hdf","time_start":"2000-03-04T03:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085445","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T03:55:00.000Z","id":"G1462781677-LAADS","original_format":"ECHO10","granule_size":"167.79965877533","browse_flag":true,"polygons":[["-40.218839 + 80.839949 -44.660302 109.384046 -26.455658 111.820413 -23.05231 88.457702 + -40.218839 80.839949"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0350.061.2017171215019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0350.061.2017171215019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0350.061.2017171215019.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0350.061.2017272143423.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0355.061.2017171215625.hdf","time_start":"2000-03-04T03:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085446","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T04:00:00.000Z","id":"G1462781676-LAADS","original_format":"ECHO10","granule_size":"163.146194458008","browse_flag":true,"polygons":[["-56.089698 + 67.288112 -62.564071 108.803071 -44.322079 109.95875 -40.155195 80.946191 + -56.089698 67.288112"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0355.061.2017171215625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0355.061.2017171215625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0355.061.2017171215625.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0355.061.2017272143450.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0400.061.2017171215010.hdf","time_start":"2000-03-04T04:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085447","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T04:05:00.000Z","id":"G1462781679-LAADS","original_format":"ECHO10","granule_size":"152.976464271545","browse_flag":true,"polygons":[["-68.280779 + 37.308794 -80.293994 116.035299 -62.096529 109.555738 -56.106131 67.602655 + -68.280779 37.308794"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0400.061.2017171215010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0400.061.2017171215010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0400.061.2017171215010.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0400.061.2017272142340.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0405.061.2017171214955.hdf","time_start":"2000-03-04T04:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085155","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T04:10:00.000Z","id":"G1462781639-LAADS","original_format":"ECHO10","granule_size":"98.5716037750244","browse_flag":true,"polygons":[["-68.986846 + -13.846556 -81.179468 -99.021265 -79.690909 117.563639 -68.486349 37.849373 + -68.986846 -13.846556"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0405.061.2017171214955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0405.061.2017171214955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0405.061.2017171214955.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0405.061.2017272140519.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0455.061.2017171221014.hdf","time_start":"2000-03-04T04:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087727","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T05:00:00.000Z","id":"G1462782344-LAADS","original_format":"ECHO10","granule_size":"51.2610120773315","browse_flag":true,"polygons":[["79.254249 + 72.319334 68.353424 148.101789 69.609817 -159.175876 81.518269 -72.42205 79.254249 + 72.319334"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0455.061.2017171221014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0455.061.2017171221014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0455.061.2017171221014.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0455.061.2017272140429.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0500.061.2017171220519.hdf","time_start":"2000-03-04T05:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087065","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T05:05:00.000Z","id":"G1462782004-LAADS","original_format":"ECHO10","granule_size":"151.611908912659","browse_flag":true,"polygons":[["61.588434 + 77.821926 55.93288 118.67609 68.719504 147.768601 79.687942 69.800376 61.588434 + 77.821926"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0500.061.2017171220519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0500.061.2017171220519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0500.061.2017171220519.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0500.061.2017272141424.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0505.061.2017171220517.hdf","time_start":"2000-03-04T05:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087403","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T05:10:00.000Z","id":"G1462782184-LAADS","original_format":"ECHO10","granule_size":"164.76948928833","browse_flag":true,"polygons":[["43.786826 + 76.937624 39.943896 105.337662 56.225908 118.08081 62.079183 77.213771 43.786826 + 76.937624"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0505.061.2017171220517.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0505.061.2017171220517.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0505.061.2017171220517.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0505.061.2017272142005.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0510.061.2017171220533.hdf","time_start":"2000-03-04T05:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087066","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T05:15:00.000Z","id":"G1462782015-LAADS","original_format":"ECHO10","granule_size":"163.960867881775","browse_flag":true,"polygons":[["25.970126 + 74.724224 22.819374 97.796176 40.146979 104.879068 44.22697 76.666262 25.970126 + 74.724224"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0510.061.2017171220533.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0510.061.2017171220533.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0510.061.2017171220533.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0510.061.2017272141440.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0515.061.2017171220523.hdf","time_start":"2000-03-04T05:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087404","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T05:20:00.000Z","id":"G1462782196-LAADS","original_format":"ECHO10","granule_size":"144.548664093018","browse_flag":true,"polygons":[["8.188535 + 71.70083 5.214669 92.729668 22.957049 97.508411 26.308782 74.585008 8.188535 + 71.70083"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0515.061.2017171220523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0515.061.2017171220523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0515.061.2017171220523.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0515.061.2017272141211.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0520.061.2017171220732.hdf","time_start":"2000-03-04T05:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086440","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T05:25:00.000Z","id":"G1462781827-LAADS","original_format":"ECHO10","granule_size":"157.812993049622","browse_flag":true,"polygons":[["-9.501553 + 67.758814 -12.64005 88.958929 5.309571 92.609422 8.397207 71.642843 -9.501553 + 67.758814"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0520.061.2017171220732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0520.061.2017171220732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0520.061.2017171220732.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0520.061.2017272142711.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0525.061.2017171220500.hdf","time_start":"2000-03-04T05:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087405","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T05:30:00.000Z","id":"G1462782188-LAADS","original_format":"ECHO10","granule_size":"159.855815887451","browse_flag":true,"polygons":[["-27.013983 + 62.311507 -30.677868 86.20401 -12.551943 89.162821 -9.407062 67.761946 -27.013983 + 62.311507"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0525.061.2017171220500.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0525.061.2017171220500.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0525.061.2017171220500.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0525.061.2017272142919.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0530.061.2017171221748.hdf","time_start":"2000-03-04T05:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088069","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T05:35:00.000Z","id":"G1462782455-LAADS","original_format":"ECHO10","granule_size":"155.206869125366","browse_flag":true,"polygons":[["-43.904893 + 53.808695 -48.668812 84.356625 -30.450304 86.604539 -26.925597 62.339727 -43.904893 + 53.808695"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0530.061.2017171221748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0530.061.2017171221748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0530.061.2017171221748.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0530.061.2017272142959.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0535.061.2017171220548.hdf","time_start":"2000-03-04T05:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087406","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T05:40:00.000Z","id":"G1462782191-LAADS","original_format":"ECHO10","granule_size":"163.447451591492","browse_flag":true,"polygons":[["-59.292287 + 37.920011 -66.535808 84.434506 -48.298834 84.987039 -43.853634 53.951477 -59.292287 + 37.920011"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0535.061.2017171220548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0535.061.2017171220548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0535.061.2017171220548.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0535.061.2017272143312.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0540.061.2017171222618.hdf","time_start":"2000-03-04T05:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089036","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T05:45:00.000Z","id":"G1462782502-LAADS","original_format":"ECHO10","granule_size":"147.456352233887","browse_flag":true,"polygons":[["-69.737393 + 2.314972 -83.95195 100.555031 -66.043218 85.236713 -59.33919 38.297547 -69.737393 + 2.314972"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0540.061.2017171222618.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0540.061.2017171222618.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0540.061.2017171222618.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0540.061.2017272141520.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0545.061.2017171221242.hdf","time_start":"2000-03-04T05:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088710","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T05:50:00.000Z","id":"G1462782490-LAADS","original_format":"ECHO10","granule_size":"72.6372909545898","browse_flag":true,"polygons":[["-67.146697 + -48.214236 -77.332256 -119.077376 -83.304983 101.96514 -70.001572 2.798883 + -67.146697 -48.214236"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0545.061.2017171221242.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0545.061.2017171221242.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0545.061.2017171221242.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0545.061.2017272140450.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0635.061.2017171221538.hdf","time_start":"2000-03-04T06:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087728","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T06:40:00.000Z","id":"G1462782343-LAADS","original_format":"ECHO10","granule_size":"78.0405397415161","browse_flag":true,"polygons":[["75.431473 + 50.485039 66.246847 114.634112 70.833282 164.621896 85.0952 -82.150203 75.431473 + 50.485039"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0635.061.2017171221538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0635.061.2017171221538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0635.061.2017171221538.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0635.061.2017272140659.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0640.061.2017171220554.hdf","time_start":"2000-03-04T06:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087407","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T06:45:00.000Z","id":"G1462782198-LAADS","original_format":"ECHO10","granule_size":"153.913377761841","browse_flag":true,"polygons":[["57.615647 + 53.100967 52.529709 90.130404 66.601832 114.17269 75.897774 48.81185 57.615647 + 53.100967"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0640.061.2017171220554.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0640.061.2017171220554.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0640.061.2017171220554.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0640.061.2017272142303.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0645.061.2017171220535.hdf","time_start":"2000-03-04T06:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087408","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T06:50:00.000Z","id":"G1462782187-LAADS","original_format":"ECHO10","granule_size":"157.532112121582","browse_flag":true,"polygons":[["39.812056 + 51.789364 36.180205 78.625555 52.794617 89.574331 58.09972 52.586093 39.812056 + 51.789364"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0645.061.2017171220535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0645.061.2017171220535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0645.061.2017171220535.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0645.061.2017272141819.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0650.061.2017171220512.hdf","time_start":"2000-03-04T06:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087409","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T06:55:00.000Z","id":"G1462782192-LAADS","original_format":"ECHO10","granule_size":"153.034890174866","browse_flag":true,"polygons":[["21.986866 + 49.39057 18.928501 71.737109 36.385437 78.127029 40.238476 51.565537 21.986866 + 49.39057"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0650.061.2017171220512.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0650.061.2017171220512.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0650.061.2017171220512.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0650.061.2017272141457.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0655.061.2017171220521.hdf","time_start":"2000-03-04T06:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087410","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T07:00:00.000Z","id":"G1462782190-LAADS","original_format":"ECHO10","granule_size":"127.285695075989","browse_flag":true,"polygons":[["4.232154 + 46.195581 1.247189 67.087475 19.042547 71.548172 22.305264 49.281472 4.232154 + 46.195581"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0655.061.2017171220521.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0655.061.2017171220521.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0655.061.2017171220521.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0655.061.2017272141127.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0700.061.2017171221834.hdf","time_start":"2000-03-04T07:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087729","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T07:05:00.000Z","id":"G1462782348-LAADS","original_format":"ECHO10","granule_size":"148.637829780579","browse_flag":true,"polygons":[["-13.442051 + 41.981062 -16.666218 63.552511 1.33139 67.029027 4.408522 46.145592 -13.442051 + 41.981062"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0700.061.2017171221834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0700.061.2017171221834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0700.061.2017171221834.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0700.061.2017272141614.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0705.061.2017171220552.hdf","time_start":"2000-03-04T07:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087730","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T07:10:00.000Z","id":"G1462782339-LAADS","original_format":"ECHO10","granule_size":"154.211733818054","browse_flag":true,"polygons":[["-30.857269 + 36.050779 -34.70069 60.981449 -16.547956 63.799883 -13.351227 42.002286 -30.857269 + 36.050779"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0705.061.2017171220552.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0705.061.2017171220552.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0705.061.2017171220552.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0705.061.2017272142645.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0710.061.2017171220551.hdf","time_start":"2000-03-04T07:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087411","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T07:15:00.000Z","id":"G1462782195-LAADS","original_format":"ECHO10","granule_size":"161.079949378967","browse_flag":true,"polygons":[["-47.523406 + 26.443107 -52.669636 59.40491 -34.440402 61.428433 -30.770381 36.084198 -47.523406 + 26.443107"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0710.061.2017171220551.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0710.061.2017171220551.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0710.061.2017171220551.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0710.061.2017272143205.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0715.061.2017171220539.hdf","time_start":"2000-03-04T07:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087412","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T07:20:00.000Z","id":"G1462782194-LAADS","original_format":"ECHO10","granule_size":"162.638875961304","browse_flag":true,"polygons":[["-62.282458 + 7.59579 -70.49935 60.284416 -52.270653 60.0085 -47.487574 26.628518 -62.282458 + 7.59579"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0715.061.2017171220539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0715.061.2017171220539.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0715.061.2017171220539.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0715.061.2017272143152.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0720.061.2017171221257.hdf","time_start":"2000-03-04T07:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088711","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T07:25:00.000Z","id":"G1462782493-LAADS","original_format":"ECHO10","granule_size":"140.720826148987","browse_flag":true,"polygons":[["-70.518446 + -34.092771 -87.014972 109.804958 -69.977443 61.341233 -62.363138 8.047365 + -70.518446 -34.092771"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0720.061.2017171221257.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0720.061.2017171221257.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0720.061.2017171221257.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0720.061.2017272141028.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0725.061.2017171221248.hdf","time_start":"2000-03-04T07:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088712","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T07:30:00.000Z","id":"G1462782499-LAADS","original_format":"ECHO10","granule_size":"49.6795988082886","browse_flag":true,"polygons":[["-64.858338 + -80.88176 -73.513419 -141.715132 -86.376834 106.144137 -70.83669 -33.759588 + -64.858338 -80.88176"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0725.061.2017171221248.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0725.061.2017171221248.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0725.061.2017171221248.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0725.061.2017272140753.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0815.061.2017171220547.hdf","time_start":"2000-03-04T08:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087413","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T08:20:00.000Z","id":"G1462782193-LAADS","original_format":"ECHO10","granule_size":"108.456618309021","browse_flag":true,"polygons":[["71.489113 + 27.236226 63.653061 82.502461 71.255013 127.422902 87.19082 -53.129215 71.489113 + 27.236226"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0815.061.2017171220547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0815.061.2017171220547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0815.061.2017171220547.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0815.061.2017272141103.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0820.061.2017171220546.hdf","time_start":"2000-03-04T08:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087414","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T08:25:00.000Z","id":"G1462782200-LAADS","original_format":"ECHO10","granule_size":"157.105785369873","browse_flag":true,"polygons":[["53.73067 + 28.242096 49.083598 62.241884 63.985295 81.979253 71.972517 26.059687 53.73067 + 28.242096"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0820.061.2017171220546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0820.061.2017171220546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0820.061.2017171220546.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0820.061.2017272142447.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0825.061.2017171221644.hdf","time_start":"2000-03-04T08:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087415","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T08:30:00.000Z","id":"G1462782201-LAADS","original_format":"ECHO10","granule_size":"163.868905067444","browse_flag":true,"polygons":[["35.830325 + 26.605575 32.372961 52.120584 49.329035 61.713142 54.203157 27.807157 35.830325 + 26.605575"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0825.061.2017171221644.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0825.061.2017171221644.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0825.061.2017171221644.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0825.061.2017272142536.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0830.061.2017171221827.hdf","time_start":"2000-03-04T08:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087731","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T08:35:00.000Z","id":"G1462782349-LAADS","original_format":"ECHO10","granule_size":"156.692342758179","browse_flag":true,"polygons":[["18.017643 + 24.036615 14.997513 45.87242 32.553252 51.699475 36.229892 26.426374 18.017643 + 24.036615"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0830.061.2017171221827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0830.061.2017171221827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0830.061.2017171221827.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0830.061.2017272140927.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0835.061.2017171220605.hdf","time_start":"2000-03-04T08:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087416","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T08:40:00.000Z","id":"G1462782197-LAADS","original_format":"ECHO10","granule_size":"157.084371566772","browse_flag":true,"polygons":[["0.27889 + 20.642645 -2.725445 41.459923 15.11606 45.645577 18.30297 23.93929 0.27889 + 20.642645"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0835.061.2017171220605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0835.061.2017171220605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0835.061.2017171220605.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0835.061.2017272140657.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0840.061.2017171221809.hdf","time_start":"2000-03-04T08:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087732","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T08:45:00.000Z","id":"G1462782347-LAADS","original_format":"ECHO10","granule_size":"166.383667945862","browse_flag":true,"polygons":[["-17.374294 + 16.145321 -20.696391 38.184208 -2.655796 41.502017 0.42097 20.623251 -17.374294 + 16.145321"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0840.061.2017171221809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0840.061.2017171221809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0840.061.2017171221809.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0840.061.2017272142454.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0845.061.2017171220602.hdf","time_start":"2000-03-04T08:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087067","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T08:50:00.000Z","id":"G1462782011-LAADS","original_format":"ECHO10","granule_size":"162.926532745361","browse_flag":true,"polygons":[["-34.671819 + 9.628403 -38.725113 35.801335 -20.546936 38.475375 -17.286365 16.166028 -34.671819 + 9.628403"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0845.061.2017171220602.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0845.061.2017171220602.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0845.061.2017171220602.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0845.061.2017272141734.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0850.061.2017171220608.hdf","time_start":"2000-03-04T08:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087417","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T08:55:00.000Z","id":"G1462782269-LAADS","original_format":"ECHO10","granule_size":"166.212663650513","browse_flag":true,"polygons":[["-51.061695 + -1.342799 -56.668096 34.552288 -38.431028 36.29634 -34.586083 9.663831 -51.061695 + -1.342799"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0850.061.2017171220608.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0850.061.2017171220608.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0850.061.2017171220608.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0850.061.2017272143515.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0855.061.2017171221305.hdf","time_start":"2000-03-04T08:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088713","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T09:00:00.000Z","id":"G1462782495-LAADS","original_format":"ECHO10","granule_size":"160.270796775818","browse_flag":true,"polygons":[["-64.988557 + -23.927489 -74.446798 36.879217 -56.240953 35.194012 -51.044665 -1.108527 + -64.988557 -23.927489"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0855.061.2017171221305.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0855.061.2017171221305.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0855.061.2017171221305.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0855.061.2017272143332.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0900.061.2017171221258.hdf","time_start":"2000-03-04T09:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089037","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T09:05:00.000Z","id":"G1462782505-LAADS","original_format":"ECHO10","granule_size":"136.793526649475","browse_flag":true,"polygons":[["-70.496971 + -70.960396 -86.429105 158.538936 -73.895824 38.123974 -65.113905 -23.413812 + -70.496971 -70.960396"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0900.061.2017171221258.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0900.061.2017171221258.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0900.061.2017171221258.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0900.061.2017272141301.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0905.061.2017171221237.hdf","time_start":"2000-03-04T09:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088714","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T09:10:00.000Z","id":"G1462782500-LAADS","original_format":"ECHO10","granule_size":"25.7892980575562","browse_flag":true,"polygons":[["-62.138432 + -112.342059 -69.584291 -165.224933 -86.438745 147.91618 -70.855824 -70.850937 + -62.138432 -112.342059"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0905.061.2017171221237.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0905.061.2017171221237.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0905.061.2017171221237.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0905.061.2017272140733.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0950.061.2017171220319.hdf","time_start":"2000-03-04T09:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086441","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T09:55:00.000Z","id":"G1462781837-LAADS","original_format":"ECHO10","granule_size":"19.9889888763428","browse_flag":true,"polygons":[["84.895257 + -16.275591 70.472066 90.244567 66.63259 140.72732 75.830558 -153.697366 84.895257 + -16.275591"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0950.061.2017171220319.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0950.061.2017171220319.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0950.061.2017171220319.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0950.061.2017272140542.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.0955.061.2017171220555.hdf","time_start":"2000-03-04T09:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087733","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T10:00:00.000Z","id":"G1462782346-LAADS","original_format":"ECHO10","granule_size":"142.490617752075","browse_flag":true,"polygons":[["67.531279 + 3.257054 60.731773 51.699712 70.821028 90.226009 85.153044 -23.096908 67.531279 + 3.257054"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0955.061.2017171220555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.0955.061.2017171220555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.0955.061.2017171220555.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.0955.061.2017272141922.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1000.061.2017171220538.hdf","time_start":"2000-03-04T10:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087418","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T10:05:00.000Z","id":"G1462782272-LAADS","original_format":"ECHO10","granule_size":"165.425180435181","browse_flag":true,"polygons":[["49.752269 + 3.273932 45.473322 34.724493 61.045693 51.138028 68.020924 2.365572 49.752269 + 3.273932"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1000.061.2017171220538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1000.061.2017171220538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1000.061.2017171220538.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1000.061.2017272143156.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1005.061.2017171220611.hdf","time_start":"2000-03-04T10:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087419","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T10:10:00.000Z","id":"G1462782268-LAADS","original_format":"ECHO10","granule_size":"149.089457511902","browse_flag":true,"polygons":[["31.936236 + 1.402917 28.617071 25.817866 45.699207 34.228849 50.212168 2.941668 31.936236 + 1.402917"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1005.061.2017171220611.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1005.061.2017171220611.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1005.061.2017171220611.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1005.061.2017272142102.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1010.061.2017171220633.hdf","time_start":"2000-03-04T10:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087420","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T10:15:00.000Z","id":"G1462782274-LAADS","original_format":"ECHO10","granule_size":"158.345564842224","browse_flag":true,"polygons":[["14.046926 + -1.374311 11.052134 20.075466 28.776936 25.462505 32.309011 1.223068 14.046926 + -1.374311"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1010.061.2017171220633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1010.061.2017171220633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1010.061.2017171220633.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1010.061.2017272140706.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1015.061.2017171221943.hdf","time_start":"2000-03-04T10:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087734","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T10:20:00.000Z","id":"G1462782353-LAADS","original_format":"ECHO10","granule_size":"152.450701713562","browse_flag":true,"polygons":[["-3.664728 + -4.974709 -6.712477 15.922941 11.164297 19.869356 14.299924 -1.45709 -3.664728 + -4.974709"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1015.061.2017171221943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1015.061.2017171221943.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1015.061.2017171221943.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1015.061.2017272141839.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1020.061.2017171220626.hdf","time_start":"2000-03-04T10:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087421","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T10:25:00.000Z","id":"G1462782273-LAADS","original_format":"ECHO10","granule_size":"152.008634567261","browse_flag":true,"polygons":[["-21.281123 + -9.830944 -24.726188 12.855532 -6.649768 16.024316 -3.551248 -4.99718 -21.281123 + -9.830944"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1020.061.2017171220626.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1020.061.2017171220626.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1020.061.2017171220626.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1020.061.2017272142056.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1025.061.2017171220625.hdf","time_start":"2000-03-04T10:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087422","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T10:30:00.000Z","id":"G1462782277-LAADS","original_format":"ECHO10","granule_size":"154.978074073792","browse_flag":true,"polygons":[["-38.435277 + -17.044175 -42.743809 10.673369 -24.547825 13.190883 -21.192084 -9.804999 + -38.435277 -17.044175"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1025.061.2017171220625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1025.061.2017171220625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1025.061.2017171220625.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1025.061.2017272142622.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1030.061.2017171220653.hdf","time_start":"2000-03-04T10:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087735","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T10:35:00.000Z","id":"G1462782352-LAADS","original_format":"ECHO10","granule_size":"169.10701084137","browse_flag":true,"polygons":[["-54.494858 + -29.659958 -60.661252 9.840484 -42.419772 11.218515 -38.365177 -16.955275 + -54.494858 -29.659958"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1030.061.2017171220653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1030.061.2017171220653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1030.061.2017171220653.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1030.061.2017272143334.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1035.061.2017171220612.hdf","time_start":"2000-03-04T10:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087736","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T10:40:00.000Z","id":"G1462782354-LAADS","original_format":"ECHO10","granule_size":"157.120812416077","browse_flag":true,"polygons":[["-67.306785 + -56.882063 -78.361122 14.823888 -60.206503 10.546716 -54.500681 -29.369564 + -67.306785 -56.882063"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1035.061.2017171220612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1035.061.2017171220612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1035.061.2017171220612.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1035.061.2017272143247.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1040.061.2017171220610.hdf","time_start":"2000-03-04T10:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087423","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T10:45:00.000Z","id":"G1462782281-LAADS","original_format":"ECHO10","granule_size":"119.294904708862","browse_flag":true,"polygons":[["-69.672334 + -107.341074 -83.052173 157.5793 -77.777775 16.290552 -67.484574 -56.337656 + -69.672334 -107.341074"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1040.061.2017171220610.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1040.061.2017171220610.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1040.061.2017171220610.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1040.061.2017272141248.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1130.061.2017171220432.hdf","time_start":"2000-03-04T11:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086757","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T11:35:00.000Z","id":"G1462781934-LAADS","original_format":"ECHO10","granule_size":"43.4899930953979","browse_flag":true,"polygons":[["81.180295 + -29.092435 69.223051 54.268394 68.782874 106.870222 79.714736 -174.657667 + 81.180295 -29.092435"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1130.061.2017171220432.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1130.061.2017171220432.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1130.061.2017171220432.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1130.061.2017272140735.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1135.061.2017171220634.hdf","time_start":"2000-03-04T11:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087424","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T11:40:00.000Z","id":"G1462782278-LAADS","original_format":"ECHO10","granule_size":"159.415193557739","browse_flag":true,"polygons":[["63.564424 + -21.125234 57.570771 21.965765 69.587022 54.028661 81.579041 -32.456557 63.564424 + -21.125234"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1135.061.2017171220634.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1135.061.2017171220634.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1135.061.2017171220634.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1135.061.2017272142803.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1140.061.2017171220724.hdf","time_start":"2000-03-04T11:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087737","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T11:45:00.000Z","id":"G1462782351-LAADS","original_format":"ECHO10","granule_size":"158.143096923828","browse_flag":true,"polygons":[["45.771721 + -21.772047 41.788755 7.579336 57.862781 21.401509 64.052191 -21.827293 45.771721 + -21.772047"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1140.061.2017171220724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1140.061.2017171220724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1140.061.2017171220724.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1140.061.2017272142811.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1145.061.2017171220709.hdf","time_start":"2000-03-04T11:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087738","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T11:50:00.000Z","id":"G1462782350-LAADS","original_format":"ECHO10","granule_size":"157.143847465515","browse_flag":true,"polygons":[["27.953446 + -23.881652 24.747219 -0.374768 41.999248 7.109626 46.215469 -22.066625 27.953446 + -23.881652"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1145.061.2017171220709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1145.061.2017171220709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1145.061.2017171220709.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1145.061.2017272142637.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1150.061.2017171221621.hdf","time_start":"2000-03-04T11:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088390","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T11:55:00.000Z","id":"G1462782472-LAADS","original_format":"ECHO10","granule_size":"148.018236160278","browse_flag":true,"polygons":[["10.162423 + -26.807399 7.185414 -5.659151 24.89583 -0.701152 28.303013 -24.021295 10.162423 + -26.807399"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1150.061.2017171221621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1150.061.2017171221621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1150.061.2017171221621.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1150.061.2017272142019.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1155.061.2017171220649.hdf","time_start":"2000-03-04T11:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087425","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T12:00:00.000Z","id":"G1462782271-LAADS","original_format":"ECHO10","granule_size":"145.41307258606","browse_flag":true,"polygons":[["-7.620108 + -30.647319 -10.723432 -9.586804 7.288142 -5.823228 10.387199 -26.873446 -7.620108 + -30.647319"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1155.061.2017171220649.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1155.061.2017171220649.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1155.061.2017171220649.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1155.061.2017272142516.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1200.061.2017171220705.hdf","time_start":"2000-03-04T12:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088070","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T12:05:00.000Z","id":"G1462782451-LAADS","original_format":"ECHO10","granule_size":"148.092582702637","browse_flag":true,"polygons":[["-25.172885 + -35.893235 -28.761215 -12.433794 -10.649202 -9.406677 -7.523222 -30.655016 + -25.172885 -35.893235"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1200.061.2017171220705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1200.061.2017171220705.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1200.061.2017171220705.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1200.061.2017272142150.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1205.061.2017171220718.hdf","time_start":"2000-03-04T12:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087739","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T12:10:00.000Z","id":"G1462782363-LAADS","original_format":"ECHO10","granule_size":"166.653321266174","browse_flag":true,"polygons":[["-42.15788 + -43.939887 -46.761486 -14.396132 -28.548865 -12.053327 -25.084956 -35.86434 + -42.15788 -43.939887"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1205.061.2017171220718.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1205.061.2017171220718.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1205.061.2017171220718.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1205.061.2017272143535.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1210.061.2017171221204.hdf","time_start":"2000-03-04T12:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087068","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T12:15:00.000Z","id":"G1462782012-LAADS","original_format":"ECHO10","granule_size":"164.021544456482","browse_flag":true,"polygons":[["-57.789779 + -58.652259 -64.647652 -14.67122 -46.406645 -13.797242 -42.099207 -43.817122 + -57.789779 -58.652259"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1210.061.2017171221204.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1210.061.2017171221204.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1210.061.2017171221204.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1210.061.2017272144253.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1215.061.2017171220631.hdf","time_start":"2000-03-04T12:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087740","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T12:20:00.000Z","id":"G1462782357-LAADS","original_format":"ECHO10","granule_size":"147.794653892517","browse_flag":true,"polygons":[["-69.108172 + -91.402265 -82.193401 -3.837147 -64.165074 -13.840819 -57.823612 -58.30004 + -69.108172 -91.402265"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1215.061.2017171220631.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1215.061.2017171220631.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1215.061.2017171220631.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1215.061.2017272142318.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1220.061.2017171221711.hdf","time_start":"2000-03-04T12:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087426","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T12:25:00.000Z","id":"G1462782270-LAADS","original_format":"ECHO10","granule_size":"90.1542129516602","browse_flag":true,"polygons":[["-68.133702 + -142.495794 -79.259589 140.257252 -81.581363 -2.504023 -69.343568 -90.887612 + -68.133702 -142.495794"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1220.061.2017171221711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1220.061.2017171221711.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1220.061.2017171221711.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1220.061.2017272140729.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1310.061.2017171220612.hdf","time_start":"2000-03-04T13:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087069","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T13:15:00.000Z","id":"G1462782014-LAADS","original_format":"ECHO10","granule_size":"73.8527936935425","browse_flag":true,"polygons":[["77.301534 + -49.310069 67.326248 19.804933 70.340968 71.352078 83.478788 169.299175 77.301534 + -49.310069"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1310.061.2017171220612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1310.061.2017171220612.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1310.061.2017171220612.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1310.061.2017272140922.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1315.061.2017171222010.hdf","time_start":"2000-03-04T13:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088071","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T13:20:00.000Z","id":"G1462782448-LAADS","original_format":"ECHO10","granule_size":"152.085132598877","browse_flag":true,"polygons":[["59.592726 + -45.763474 54.239969 -6.950736 67.69746 19.381706 77.741596 -51.531476 59.592726 + -45.763474"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1315.061.2017171222010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1315.061.2017171222010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1315.061.2017171222010.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1315.061.2017272143445.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1320.061.2017171215804.hdf","time_start":"2000-03-04T13:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086758","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T13:25:00.000Z","id":"G1462781939-LAADS","original_format":"ECHO10","granule_size":"161.064076423645","browse_flag":true,"polygons":[["41.786258 + -46.879258 38.048568 -19.282264 54.506502 -7.489454 60.075012 -46.322469 41.786258 + -46.879258"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1320.061.2017171215804.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1320.061.2017171215804.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1320.061.2017171215804.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1320.061.2017272143913.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1325.061.2017171215805.hdf","time_start":"2000-03-04T13:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086442","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T13:30:00.000Z","id":"G1462781832-LAADS","original_format":"ECHO10","granule_size":"139.593734741211","browse_flag":true,"polygons":[["23.96936 + -49.189073 20.851542 -26.444753 38.242742 -19.718801 42.213412 -47.128048 + 23.96936 -49.189073"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1325.061.2017171215805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1325.061.2017171215805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1325.061.2017171215805.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1325.061.2017272142152.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1330.061.2017171215744.hdf","time_start":"2000-03-04T13:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086443","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T13:35:00.000Z","id":"G1462781831-LAADS","original_format":"ECHO10","granule_size":"145.065225601196","browse_flag":true,"polygons":[["6.194087 + -52.293044 3.216768 -31.345258 20.987499 -26.731772 24.292317 -49.306747 6.194087 + -52.293044"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1330.061.2017171215744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1330.061.2017171215744.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1330.061.2017171215744.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1330.061.2017272142649.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1335.061.2017171220924.hdf","time_start":"2000-03-04T13:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086444","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T13:40:00.000Z","id":"G1462781833-LAADS","original_format":"ECHO10","granule_size":"170.823746681213","browse_flag":true,"polygons":[["-11.491916 + -56.359261 -14.668359 -35.003468 3.306833 -31.442122 6.385319 -52.33676 -11.491916 + -56.359261"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1335.061.2017171220924.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1335.061.2017171220924.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1335.061.2017171220924.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1335.061.2017272142811.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1340.061.2017171220932.hdf","time_start":"2000-03-04T13:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086445","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T13:45:00.000Z","id":"G1462781826-LAADS","original_format":"ECHO10","granule_size":"168.001216888428","browse_flag":true,"polygons":[["-29.04257 + -62.080759 -32.796545 -37.680265 -14.565854 -34.774373 -11.398769 -56.355314 + -29.04257 -62.080759"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1340.061.2017171220932.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1340.061.2017171220932.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1340.061.2017171220932.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1340.061.2017272142803.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1345.061.2017171215753.hdf","time_start":"2000-03-04T13:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086759","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T13:50:00.000Z","id":"G1462781947-LAADS","original_format":"ECHO10","granule_size":"149.053044319153","browse_flag":true,"polygons":[["-45.822865 + -71.135817 -50.77619 -39.389602 -32.550873 -37.252367 -28.956083 -62.049009 + -45.822865 -71.135817"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1345.061.2017171215753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1345.061.2017171215753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1345.061.2017171215753.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1345.061.2017272142728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1350.061.2017171220651.hdf","time_start":"2000-03-04T13:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087741","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T13:55:00.000Z","id":"G1462782358-LAADS","original_format":"ECHO10","granule_size":"153.482788085938","browse_flag":true,"polygons":[["-60.909805 + -88.481954 -68.626011 -38.868275 -50.391046 -38.731871 -45.784884 -70.959475 + -60.909805 -88.481954"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1350.061.2017171220651.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1350.061.2017171220651.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1350.061.2017171220651.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1350.061.2017272143233.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1355.061.2017171220651.hdf","time_start":"2000-03-04T13:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087742","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T14:00:00.000Z","id":"G1462782355-LAADS","original_format":"ECHO10","granule_size":"152.991494178772","browse_flag":true,"polygons":[["-70.248588 + -127.344377 -85.745716 -11.091445 -68.117016 -37.96775 -60.967054 -88.089666 + -70.248588 -127.344377"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1355.061.2017171220651.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1355.061.2017171220651.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1355.061.2017171220651.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1355.061.2017272142235.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1400.061.2017171221620.hdf","time_start":"2000-03-04T14:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087427","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T14:05:00.000Z","id":"G1462782280-LAADS","original_format":"ECHO10","granule_size":"60.9881801605225","browse_flag":true,"polygons":[["-66.01552 + -176.108288 -75.371452 118.767654 -85.113676 -11.443144 -70.539109 -126.933897 + -66.01552 -176.108288"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1400.061.2017171221620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1400.061.2017171221620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1400.061.2017171221620.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1400.061.2017272140852.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1450.061.2017171220709.hdf","time_start":"2000-03-04T14:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087428","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T14:55:00.000Z","id":"G1462782276-LAADS","original_format":"ECHO10","granule_size":"100.721022605896","browse_flag":true,"polygons":[["73.360542 + -72.223716 64.92762 -13.044788 71.157117 34.518154 86.595684 174.582348 73.360542 + -72.223716"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1450.061.2017171220709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1450.061.2017171220709.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1450.061.2017171220709.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1450.061.2017272141240.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1455.061.2017171220712.hdf","time_start":"2000-03-04T14:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087743","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T15:00:00.000Z","id":"G1462782364-LAADS","original_format":"ECHO10","granule_size":"157.056963920593","browse_flag":true,"polygons":[["55.614864 + -70.555289 50.766184 -35.168823 65.272655 -13.548679 73.838209 -73.577756 + 55.614864 -70.555289"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1455.061.2017171220712.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1455.061.2017171220712.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1455.061.2017171220712.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1455.061.2017272142650.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1500.061.2017171215756.hdf","time_start":"2000-03-04T15:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086446","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T15:05:00.000Z","id":"G1462781828-LAADS","original_format":"ECHO10","granule_size":"162.422756195068","browse_flag":true,"polygons":[["37.805163 + -72.04272 34.264106 -45.899647 51.019065 -35.70525 56.091149 -71.025583 37.805163 + -72.04272"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1500.061.2017171215756.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1500.061.2017171215756.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1500.061.2017171215756.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1500.061.2017272143548.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1505.061.2017171215812.hdf","time_start":"2000-03-04T15:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086447","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T15:10:00.000Z","id":"G1462781838-LAADS","original_format":"ECHO10","granule_size":"144.224200248718","browse_flag":true,"polygons":[["19.990253 + -74.534674 16.938293 -52.404583 34.443916 -46.304626 38.21118 -72.252234 19.990253 + -74.534674"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1505.061.2017171215812.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1505.061.2017171215812.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1505.061.2017171215812.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1505.061.2017272142414.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1510.061.2017171215754.hdf","time_start":"2000-03-04T15:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086760","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T15:15:00.000Z","id":"G1462781938-LAADS","original_format":"ECHO10","granule_size":"162.777449607849","browse_flag":true,"polygons":[["2.236214 + -77.823856 -0.756653 -56.973568 17.063656 -52.656828 20.285129 -74.633585 + 2.236214 -77.823856"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1510.061.2017171215754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1510.061.2017171215754.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1510.061.2017171215754.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1510.061.2017272142832.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1515.061.2017171215806.hdf","time_start":"2000-03-04T15:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086761","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T15:20:00.000Z","id":"G1462781940-LAADS","original_format":"ECHO10","granule_size":"171.515334129333","browse_flag":true,"polygons":[["-15.429172 + -82.184323 -18.69883 -60.39782 -0.677339 -57.002272 2.396457 -77.865733 -15.429172 + -82.184323"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1515.061.2017171215806.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1515.061.2017171215806.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1515.061.2017171215806.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1515.061.2017272142717.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1520.061.2017171220401.hdf","time_start":"2000-03-04T15:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087070","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T15:25:00.000Z","id":"G1462782010-LAADS","original_format":"ECHO10","granule_size":"162.739827156067","browse_flag":true,"polygons":[["-32.788055 + -88.398623 -36.731499 -62.86994 -18.565941 -60.12275 -15.337905 -82.161561 + -32.788055 -88.398623"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1520.061.2017171220401.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1520.061.2017171220401.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1520.061.2017171220401.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1520.061.2017272142657.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1525.061.2017171215805.hdf","time_start":"2000-03-04T15:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086762","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T15:30:00.000Z","id":"G1462781949-LAADS","original_format":"ECHO10","granule_size":"156.756713867188","browse_flag":true,"polygons":[["-49.405824 + -98.713331 -54.7805 -64.288808 -36.456422 -62.387266 -32.704835 -88.353009 + -49.405824 -98.713331"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1525.061.2017171215805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1525.061.2017171215805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1525.061.2017171215805.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1525.061.2017272143008.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1530.061.2017171222022.hdf","time_start":"2000-03-04T15:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088072","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T15:35:00.000Z","id":"G1462782449-LAADS","original_format":"ECHO10","granule_size":"162.084356307983","browse_flag":true,"polygons":[["-63.754894 + -119.432198 -72.58048 -62.594278 -54.364328 -63.589708 -49.37729 -98.507754 + -63.754894 -119.432198"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1530.061.2017171222022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1530.061.2017171222022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1530.061.2017171222022.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1530.061.2017272143828.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1535.061.2017171220655.hdf","time_start":"2000-03-04T15:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087744","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T15:40:00.000Z","id":"G1462782359-LAADS","original_format":"ECHO10","granule_size":"146.03533744812","browse_flag":true,"polygons":[["-70.613493 + -164.119098 -87.347729 29.201343 -72.046963 -61.566097 -63.862145 -118.953083 + -70.613493 -164.119098"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1535.061.2017171220655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1535.061.2017171220655.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1535.061.2017171220655.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1535.061.2017272141826.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1540.061.2017171220633.hdf","time_start":"2000-03-04T15:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087429","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T15:45:00.000Z","id":"G1462782282-LAADS","original_format":"ECHO10","granule_size":"36.0540819168091","browse_flag":true,"polygons":[["-63.462365 + 151.791536 -71.449812 95.615933 -87.070171 17.575703 -70.951161 -163.896599 + -63.462365 151.791536"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1540.061.2017171220633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1540.061.2017171220633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1540.061.2017171220633.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1540.061.2017272140842.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1630.061.2017171220700.hdf","time_start":"2000-03-04T16:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087745","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T16:35:00.000Z","id":"G1462782356-LAADS","original_format":"ECHO10","granule_size":"127.798454284668","browse_flag":true,"polygons":[["69.414064 + -95.93009 62.155 -44.438014 71.130938 -2.800196 86.515096 -140.124877 69.414064 + -95.93009"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1630.061.2017171220700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1630.061.2017171220700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1630.061.2017171220700.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1630.061.2017272141337.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1635.061.2017171215832.hdf","time_start":"2000-03-04T16:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086763","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T16:40:00.000Z","id":"G1462781943-LAADS","original_format":"ECHO10","granule_size":"159.530500411987","browse_flag":true,"polygons":[["51.637812 + -95.485279 47.222165 -62.954362 62.51406 -45.077805 69.906215 -96.933508 51.637812 + -95.485279"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1635.061.2017171215832.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1635.061.2017171215832.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1635.061.2017171215832.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1635.061.2017272142354.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1640.061.2017171215809.hdf","time_start":"2000-03-04T16:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086448","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T16:45:00.000Z","id":"G1462781839-LAADS","original_format":"ECHO10","granule_size":"159.85040473938","browse_flag":true,"polygons":[["33.82873 + -97.24733 30.446452 -72.316357 47.434676 -63.392329 52.108243 -95.863846 33.82873 + -97.24733"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1640.061.2017171215809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1640.061.2017171215809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1640.061.2017171215809.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1640.061.2017272142544.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1645.061.2017171215819.hdf","time_start":"2000-03-04T16:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086449","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T16:50:00.000Z","id":"G1462781829-LAADS","original_format":"ECHO10","granule_size":"153.049828529358","browse_flag":true,"polygons":[["16.021906 + -99.920749 13.013561 -78.269327 30.613101 -72.68973 34.212675 -97.431518 16.021906 + -99.920749"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1645.061.2017171215819.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1645.061.2017171215819.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1645.061.2017171215819.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1645.061.2017272142617.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1650.061.2017171221251.hdf","time_start":"2000-03-04T16:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087071","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T16:55:00.000Z","id":"G1462782083-LAADS","original_format":"ECHO10","granule_size":"147.444179534912","browse_flag":true,"polygons":[["-1.706498 + -103.408347 -4.730867 -82.549011 13.129282 -78.488372 16.288418 -100.003338 + -1.706498 -103.408347"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1650.061.2017171221251.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1650.061.2017171221251.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1650.061.2017171221251.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1650.061.2017272142003.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1655.061.2017171221041.hdf","time_start":"2000-03-04T16:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086764","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T17:00:00.000Z","id":"G1462781945-LAADS","original_format":"ECHO10","granule_size":"160.222674369812","browse_flag":true,"polygons":[["-19.342958 + -108.087173 -22.723846 -85.735964 -4.662722 -82.494635 -1.578843 -103.436366 + -19.342958 -108.087173"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1655.061.2017171221041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1655.061.2017171221041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1655.061.2017171221041.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1655.061.2017272143149.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1700.061.2017171215848.hdf","time_start":"2000-03-04T17:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086765","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T17:05:00.000Z","id":"G1462781942-LAADS","original_format":"ECHO10","granule_size":"145.490268707275","browse_flag":true,"polygons":[["-36.572165 + -114.938293 -40.746985 -88.018258 -22.559451 -85.422228 -19.253606 -108.062545 + -36.572165 -114.938293"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1700.061.2017171215848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1700.061.2017171215848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1700.061.2017171215848.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1700.061.2017272142439.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1705.061.2017171215853.hdf","time_start":"2000-03-04T17:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086766","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T17:10:00.000Z","id":"G1462781944-LAADS","original_format":"ECHO10","granule_size":"159.038807868958","browse_flag":true,"polygons":[["-52.810617 + -126.678571 -58.679763 -89.069385 -40.439089 -87.497634 -36.497477 -114.865505 + -52.810617 -126.678571"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1705.061.2017171215853.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1705.061.2017171215853.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1705.061.2017171215853.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1705.061.2017272143720.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1710.061.2017171220654.hdf","time_start":"2000-03-04T17:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087746","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T17:15:00.000Z","id":"G1462782360-LAADS","original_format":"ECHO10","granule_size":"161.125709533691","browse_flag":true,"polygons":[["-66.269246 + -151.666795 -76.506629 -85.3865 -58.23723 -88.307904 -52.804046 -126.41817 + -66.269246 -151.666795"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1710.061.2017171220654.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1710.061.2017171220654.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1710.061.2017171220654.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1710.061.2017272143617.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1715.061.2017171220638.hdf","time_start":"2000-03-04T17:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087747","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T17:20:00.000Z","id":"G1462782362-LAADS","original_format":"ECHO10","granule_size":"132.601623535156","browse_flag":true,"polygons":[["-70.164461 + 159.180121 -84.760299 51.445439 -75.945585 -84.249278 -66.423175 -151.142551 + -70.164461 159.180121"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1715.061.2017171220638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1715.061.2017171220638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1715.061.2017171220638.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1715.061.2017272141240.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1805.061.2017171220637.hdf","time_start":"2000-03-04T18:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087430","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T18:10:00.000Z","id":"G1462782275-LAADS","original_format":"ECHO10","granule_size":"31.8259153366089","browse_flag":true,"polygons":[["82.98744 + -132.127573 69.900848 -39.402953 67.814529 12.537109 77.868911 84.382606 82.98744 + -132.127573"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1805.061.2017171220637.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1805.061.2017171220637.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1805.061.2017171220637.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1805.061.2017272140817.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1810.061.2017171220700.hdf","time_start":"2000-03-04T18:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087748","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T18:15:00.000Z","id":"G1462782361-LAADS","original_format":"ECHO10","granule_size":"142.702209472656","browse_flag":true,"polygons":[["65.451895 + -120.139301 59.138742 -74.735394 70.322521 -39.610591 83.347633 -136.581209 + 65.451895 -120.139301"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1810.061.2017171220700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1810.061.2017171220700.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1810.061.2017171220700.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1810.061.2017272141939.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1815.061.2017171220740.hdf","time_start":"2000-03-04T18:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086767","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T18:20:00.000Z","id":"G1462781941-LAADS","original_format":"ECHO10","granule_size":"152.543591499329","browse_flag":true,"polygons":[["47.671941 + -120.480394 43.556721 -90.19156 59.408641 -75.214154 65.948804 -120.895964 + 47.671941 -120.480394"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1815.061.2017171220740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1815.061.2017171220740.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1815.061.2017171220740.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1815.061.2017272142509.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1820.061.2017171215842.hdf","time_start":"2000-03-04T18:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086768","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T18:25:00.000Z","id":"G1462781946-LAADS","original_format":"ECHO10","granule_size":"159.766091346741","browse_flag":true,"polygons":[["29.855359 + -122.503008 26.599602 -98.580683 43.775711 -90.679857 48.122424 -120.818668 + 29.855359 -122.503008"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1820.061.2017171215842.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1820.061.2017171215842.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1820.061.2017171215842.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1820.061.2017272141506.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1825.061.2017171215843.hdf","time_start":"2000-03-04T18:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086450","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T18:30:00.000Z","id":"G1462781834-LAADS","original_format":"ECHO10","granule_size":"160.413891792297","browse_flag":true,"polygons":[["12.05715 + -125.344172 9.074461 -104.059228 26.752718 -98.916874 30.216102 -122.653792 + 12.05715 -125.344172"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1825.061.2017171215843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1825.061.2017171215843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1825.061.2017171215843.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1825.061.2017272142549.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1830.061.2017171215841.hdf","time_start":"2000-03-04T18:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086769","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T18:35:00.000Z","id":"G1462781951-LAADS","original_format":"ECHO10","granule_size":"150.349969863892","browse_flag":true,"polygons":[["-5.642323 + -129.046415 -8.715015 -108.077868 9.181254 -104.240103 12.294822 -125.411491 + -5.642323 -129.046415"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1830.061.2017171215841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1830.061.2017171215841.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1830.061.2017171215841.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1830.061.2017272142202.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1835.061.2017171215847.hdf","time_start":"2000-03-04T18:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086770","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T18:40:00.000Z","id":"G1462781952-LAADS","original_format":"ECHO10","granule_size":"153.228236198425","browse_flag":true,"polygons":[["-23.235754 + -134.090766 -26.748354 -111.043333 -8.65161 -107.946659 -5.544146 -129.062477 + -23.235754 -134.090766"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1835.061.2017171215847.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1835.061.2017171215847.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1835.061.2017171215847.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1835.061.2017272143000.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1840.061.2017171221206.hdf","time_start":"2000-03-04T18:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087072","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T18:45:00.000Z","id":"G1462782087-LAADS","original_format":"ECHO10","granule_size":"146.322129249573","browse_flag":true,"polygons":[["-40.310446 + -141.700917 -44.757659 -113.117172 -26.552203 -110.685218 -23.14751 -134.063449 + -40.310446 -141.700917"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1840.061.2017171221206.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1840.061.2017171221206.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1840.061.2017171221206.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1840.061.2017272142717.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1845.061.2017171220730.hdf","time_start":"2000-03-04T18:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087749","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T18:50:00.000Z","id":"G1462782366-LAADS","original_format":"ECHO10","granule_size":"168.699545860291","browse_flag":true,"polygons":[["-56.170589 + -155.306079 -62.661035 -113.689894 -44.418633 -112.544673 -40.246015 -141.596568 + -56.170589 -155.306079"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1845.061.2017171220730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1845.061.2017171220730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1845.061.2017171220730.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1845.061.2017272144002.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1850.061.2017171220719.hdf","time_start":"2000-03-04T18:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088073","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T18:55:00.000Z","id":"G1462782454-LAADS","original_format":"ECHO10","granule_size":"155.582240104675","browse_flag":true,"polygons":[["-68.28849 + 174.795417 -80.296223 -106.31116 -62.192084 -112.894481 -56.189352 -154.98722 + -68.28849 174.795417"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1850.061.2017171220719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1850.061.2017171220719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1850.061.2017171220719.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1850.061.2017272143554.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1855.061.2017171221114.hdf","time_start":"2000-03-04T18:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088715","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T19:00:00.000Z","id":"G1462782497-LAADS","original_format":"ECHO10","granule_size":"102.406898498535","browse_flag":true,"polygons":[["-68.950683 + 123.403584 -81.089467 38.81561 -79.705548 -105.012893 -68.494447 175.328441 + -68.950683 123.403584"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1855.061.2017171221114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1855.061.2017171221114.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1855.061.2017171221114.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1855.061.2017272141128.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1945.061.2017171221409.hdf","time_start":"2000-03-04T19:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088074","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T19:50:00.000Z","id":"G1462782456-LAADS","original_format":"ECHO10","granule_size":"57.4076242446899","browse_flag":true,"polygons":[["79.156477 + -150.080523 68.30347 -74.62372 69.644643 -21.937664 81.608589 65.302893 79.156477 + -150.080523"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1945.061.2017171221409.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1945.061.2017171221409.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1945.061.2017171221409.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1945.061.2017272140826.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1950.061.2017171222107.hdf","time_start":"2000-03-04T19:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088391","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T19:55:00.000Z","id":"G1462782471-LAADS","original_format":"ECHO10","granule_size":"147.544939994812","browse_flag":true,"polygons":[["61.491665 + -144.637699 55.848225 -103.909607 68.668117 -74.957976 79.596947 -152.480343 + 61.491665 -144.637699"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1950.061.2017171222107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1950.061.2017171222107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1950.061.2017171222107.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1950.061.2017272141959.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.1955.061.2017171221240.hdf","time_start":"2000-03-04T19:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087073","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T20:00:00.000Z","id":"G1462782084-LAADS","original_format":"ECHO10","granule_size":"162.960849761963","browse_flag":true,"polygons":[["43.694311 + -145.577588 39.847955 -117.188843 56.136286 -104.489774 61.97725 -145.292796 + 43.694311 -145.577588"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1955.061.2017171221240.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.1955.061.2017171221240.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.1955.061.2017171221240.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.1955.061.2017272142756.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2000.061.2017171221349.hdf","time_start":"2000-03-04T20:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087074","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T20:05:00.000Z","id":"G1462782082-LAADS","original_format":"ECHO10","granule_size":"160.838279724121","browse_flag":true,"polygons":[["25.872376 + -147.789496 22.722747 -124.723378 40.053579 -117.657395 44.130123 -145.842516 + 25.872376 -147.789496"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2000.061.2017171221349.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2000.061.2017171221349.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2000.061.2017171221349.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2000.061.2017272144003.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2005.061.2017171215915.hdf","time_start":"2000-03-04T20:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086771","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T20:10:00.000Z","id":"G1462781961-LAADS","original_format":"ECHO10","granule_size":"156.926791191101","browse_flag":true,"polygons":[["8.091197 + -150.807665 5.115823 -129.776501 22.859669 -125.005204 26.210507 -147.917887 + 8.091197 -150.807665"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2005.061.2017171215915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2005.061.2017171215915.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2005.061.2017171215915.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2005.061.2017272143101.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2010.061.2017171215846.hdf","time_start":"2000-03-04T20:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087075","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T20:15:00.000Z","id":"G1462782090-LAADS","original_format":"ECHO10","granule_size":"153.369271278381","browse_flag":true,"polygons":[["-9.600822 + -154.753922 -12.739424 -133.555987 5.212784 -129.909694 8.297931 -150.862936 + -9.600822 -154.753922"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2010.061.2017171215846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2010.061.2017171215846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2010.061.2017171215846.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2010.061.2017272142119.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2015.061.2017171220736.hdf","time_start":"2000-03-04T20:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087750","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T20:20:00.000Z","id":"G1462782365-LAADS","original_format":"ECHO10","granule_size":"159.422693252563","browse_flag":true,"polygons":[["-27.111518 + -160.214704 -30.778089 -136.310361 -12.650205 -133.35333 -9.505598 -154.751916 + -27.111518 -160.214704"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2015.061.2017171220736.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2015.061.2017171220736.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2015.061.2017171220736.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2015.061.2017272143357.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2020.061.2017171221917.hdf","time_start":"2000-03-04T20:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088075","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T20:25:00.000Z","id":"G1462782464-LAADS","original_format":"ECHO10","granule_size":"156.791831016541","browse_flag":true,"polygons":[["-44.000125 + -168.74086 -48.770166 -138.150772 -30.550157 -135.906279 -27.024401 -160.1848 + -44.000125 -168.74086"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2020.061.2017171221917.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2020.061.2017171221917.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2020.061.2017171221917.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2020.061.2017272143245.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2025.061.2017171220803.hdf","time_start":"2000-03-04T20:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088076","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T20:30:00.000Z","id":"G1462782461-LAADS","original_format":"ECHO10","granule_size":"163.595056533813","browse_flag":true,"polygons":[["-59.373938 + 175.298805 -66.638431 -138.063654 -48.400131 -137.522181 -43.948022 -168.600245 + -59.373938 175.298805"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2025.061.2017171220803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2025.061.2017171220803.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2025.061.2017171220803.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2025.061.2017272143654.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2030.061.2017171221924.hdf","time_start":"2000-03-04T20:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088077","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T20:35:00.000Z","id":"G1462782458-LAADS","original_format":"ECHO10","granule_size":"155.403035163879","browse_flag":true,"polygons":[["-69.770267 + 139.534785 -84.027125 -121.152975 -66.141579 -137.134518 -59.422495 175.679398 + -69.770267 139.534785"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2030.061.2017171221924.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2030.061.2017171221924.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2030.061.2017171221924.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2030.061.2017272142605.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2035.061.2017171220720.hdf","time_start":"2000-03-04T20:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087751","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T20:40:00.000Z","id":"G1462782367-LAADS","original_format":"ECHO10","granule_size":"68.1003437042236","browse_flag":true,"polygons":[["-67.17889 + 89.183943 -77.316562 18.605817 -83.411034 -120.489358 -70.081106 140.037574 + -67.17889 89.183943"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2035.061.2017171220720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2035.061.2017171220720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2035.061.2017171220720.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2035.061.2017272140743.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2125.061.2017171221954.hdf","time_start":"2000-03-04T21:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088078","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T21:30:00.000Z","id":"G1462782459-LAADS","original_format":"ECHO10","granule_size":"77.8092622756958","browse_flag":true,"polygons":[["75.331977 + -171.944493 66.181693 -108.057732 70.849237 -58.183911 85.18042 56.005386 + 75.331977 -171.944493"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2125.061.2017171221954.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2125.061.2017171221954.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2125.061.2017171221954.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2125.061.2017272141141.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2130.061.2017171220732.hdf","time_start":"2000-03-04T21:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088079","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T21:35:00.000Z","id":"G1462782462-LAADS","original_format":"ECHO10","granule_size":"155.474936485291","browse_flag":true,"polygons":[["57.513724 + -169.391994 52.441534 -132.453691 66.541319 -108.530553 75.798936 -173.6083 + 57.513724 -169.391994"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2130.061.2017171220732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2130.061.2017171220732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2130.061.2017171220732.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2130.061.2017272142646.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2135.061.2017171221008.hdf","time_start":"2000-03-04T21:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086772","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T21:40:00.000Z","id":"G1462781953-LAADS","original_format":"ECHO10","granule_size":"148.158297538757","browse_flag":true,"polygons":[["39.709624 + -170.709975 36.078831 -143.905707 52.700843 -132.992736 57.998333 -169.897122 + 39.709624 -170.709975"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2135.061.2017171221008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2135.061.2017171221008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2135.061.2017171221008.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2135.061.2017272143907.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2140.061.2017171215857.hdf","time_start":"2000-03-04T21:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086773","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T21:45:00.000Z","id":"G1462781948-LAADS","original_format":"ECHO10","granule_size":"150.682570457458","browse_flag":true,"polygons":[["21.892626 + -173.114323 18.811022 -150.710328 36.265055 -144.324987 40.125558 -170.934357 + 21.892626 -173.114323"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2140.061.2017171215857.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2140.061.2017171215857.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2140.061.2017171215857.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2140.061.2017272142802.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2145.061.2017171215901.hdf","time_start":"2000-03-04T21:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087076","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T21:50:00.000Z","id":"G1462782089-LAADS","original_format":"ECHO10","granule_size":"142.831581115723","browse_flag":true,"polygons":[["4.12735 + -176.316229 1.143655 -155.43632 18.942221 -150.982669 22.201883 -173.223582 + 4.12735 -176.316229"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2145.061.2017171215901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2145.061.2017171215901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2145.061.2017171215901.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2145.061.2017272142207.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2150.061.2017171215916.hdf","time_start":"2000-03-04T21:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086774","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T21:55:00.000Z","id":"G1462781956-LAADS","original_format":"ECHO10","granule_size":"156.398590087891","browse_flag":true,"polygons":[["-13.549478 + 179.467334 -16.773608 -158.965857 1.227096 -155.492249 4.3026 -176.358787 + -13.549478 179.467334"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2150.061.2017171215916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2150.061.2017171215916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2150.061.2017171215916.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2150.061.2017272142354.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2155.061.2017171215921.hdf","time_start":"2000-03-04T21:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087077","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T22:00:00.000Z","id":"G1462782085-LAADS","original_format":"ECHO10","granule_size":"157.737976074219","browse_flag":true,"polygons":[["-30.963177 + 173.519975 -34.809634 -161.535695 -16.654398 -158.718707 -13.458073 179.486659 + -30.963177 173.519975"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2155.061.2017171215921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2155.061.2017171215921.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2155.061.2017171215921.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2155.061.2017272143028.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2200.061.2017171220805.hdf","time_start":"2000-03-04T22:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088080","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T22:05:00.000Z","id":"G1462782463-LAADS","original_format":"ECHO10","granule_size":"167.022566795349","browse_flag":true,"polygons":[["-47.626558 + 163.881113 -52.780791 -163.103458 -34.549437 -161.08381 -30.877917 173.555519 + -47.626558 163.881113"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2200.061.2017171220805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2200.061.2017171220805.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2200.061.2017171220805.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2200.061.2017272143510.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2205.061.2017171220730.hdf","time_start":"2000-03-04T22:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088081","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T22:10:00.000Z","id":"G1462782465-LAADS","original_format":"ECHO10","granule_size":"156.822200775146","browse_flag":true,"polygons":[["-62.365049 + 144.933482 -70.606833 -162.043491 -52.380496 -162.412249 -47.58899 164.062379 + -62.365049 144.933482"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2205.061.2017171220730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2205.061.2017171220730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2205.061.2017171220730.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2205.061.2017272143142.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2210.061.2017171221412.hdf","time_start":"2000-03-04T22:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088392","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T22:15:00.000Z","id":"G1462782473-LAADS","original_format":"ECHO10","granule_size":"140.903961181641","browse_flag":true,"polygons":[["-70.532277 + 103.075388 -87.066422 -110.67507 -70.086741 -161.099645 -62.451329 145.379048 + -70.532277 103.075388"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2210.061.2017171221412.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2210.061.2017171221412.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2210.061.2017171221412.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2210.061.2017272141820.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2215.061.2017171215828.hdf","time_start":"2000-03-04T22:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086775","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T22:20:00.000Z","id":"G1462781955-LAADS","original_format":"ECHO10","granule_size":"44.1437187194824","browse_flag":true,"polygons":[["-64.826932 + 56.326851 -73.403893 -3.952504 -86.486326 -115.431275 -70.904899 103.405012 + -64.826932 56.326851"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2215.061.2017171215828.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2215.061.2017171215828.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2215.061.2017171215828.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2215.061.2017272140928.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2250.061.2017171215833.hdf","time_start":"2000-03-04T22:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086451","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T22:55:00.000Z","id":"G1462781835-LAADS","original_format":"ECHO10","granule_size":"18.567234992981","browse_flag":true,"polygons":[["54.603759 + 4.132542 49.411461 -29.581337 32.738383 -19.334569 36.345368 6.111507 54.603759 + 4.132542"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2250.061.2017171215833.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2250.061.2017171215833.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2250.061.2017171215833.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2250.061.2017272141055.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2255.061.2017171215839.hdf","time_start":"2000-03-04T22:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086452","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T23:00:00.000Z","id":"G1462781836-LAADS","original_format":"ECHO10","granule_size":"18.2058973312378","browse_flag":true,"polygons":[["72.5869 + 5.481229 63.989329 -50.346426 49.412727 -29.305716 54.202077 4.818719 72.5869 + 5.481229"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2255.061.2017171215839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2255.061.2017171215839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2255.061.2017171215839.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2255.061.2017272140938.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2300.061.2017171215839.hdf","time_start":"2000-03-04T23:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086776","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T23:05:00.000Z","id":"G1462781950-LAADS","original_format":"ECHO10","granule_size":"18.0678634643555","browse_flag":true,"polygons":[["87.489701 + 100.036087 70.918158 -95.768468 64.127451 -49.818381 72.059606 6.656676 87.489701 + 100.036087"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2300.061.2017171215839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2300.061.2017171215839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2300.061.2017171215839.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2300.061.2017272140857.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2305.061.2017171220725.hdf","time_start":"2000-03-04T23:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087078","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T23:10:00.000Z","id":"G1462782101-LAADS","original_format":"ECHO10","granule_size":"17.8146181106567","browse_flag":true,"polygons":[["71.334425 + 164.794187 63.541877 -140.248486 71.251011 -95.56961 87.192735 87.576096 71.334425 + 164.794187"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2305.061.2017171220725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2305.061.2017171220725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2305.061.2017171220725.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2305.061.2017272140805.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2310.061.2017171221126.hdf","time_start":"2000-03-04T23:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087079","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T23:15:00.000Z","id":"G1462782092-LAADS","original_format":"ECHO10","granule_size":"20.0454263687134","browse_flag":true,"polygons":[["53.623581 + 165.745321 48.996988 -160.360059 63.862636 -140.872322 71.783925 163.656057 + 53.623581 165.745321"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2310.061.2017171221126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2310.061.2017171221126.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2310.061.2017171221126.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2310.061.2017272141958.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2320.061.2017171215850.hdf","time_start":"2000-03-04T23:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086777","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-04T23:25:00.000Z","id":"G1462781954-LAADS","original_format":"ECHO10","granule_size":"45.5241994857788","browse_flag":true,"polygons":[["17.910286 + 161.521636 14.882916 -176.623479 32.440819 -170.806477 36.117529 163.916269 + 17.910286 161.521636"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2320.061.2017171215850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2320.061.2017171215850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2320.061.2017171215850.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2320.061.2017272142244.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2325.061.2017171215946.hdf","time_start":"2000-03-04T23:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086778","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T23:30:00.000Z","id":"G1462781958-LAADS","original_format":"ECHO10","granule_size":"149.759449005127","browse_flag":true,"polygons":[["0.168046 + 158.126548 -2.839847 178.959846 15.003692 -176.860807 18.191258 161.429518 + 0.168046 158.126548"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2325.061.2017171215946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2325.061.2017171215946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2325.061.2017171215946.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2325.061.2017272142146.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2330.061.2017171215932.hdf","time_start":"2000-03-04T23:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087080","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T23:35:00.000Z","id":"G1462782104-LAADS","original_format":"ECHO10","granule_size":"156.65941619873","browse_flag":true,"polygons":[["-17.484508 + 153.605435 -20.811137 175.665973 -2.767567 178.980644 0.310918 158.09426 -17.484508 + 153.605435"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2330.061.2017171215932.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2330.061.2017171215932.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2330.061.2017171215932.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2330.061.2017272142757.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2335.061.2017171215933.hdf","time_start":"2000-03-04T23:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086779","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T23:40:00.000Z","id":"G1462781959-LAADS","original_format":"ECHO10","granule_size":"160.041171073914","browse_flag":true,"polygons":[["-34.77816 + 147.067181 -38.840128 173.286785 -20.661603 175.95838 -17.393953 153.626748 + -34.77816 147.067181"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2335.061.2017171215933.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2335.061.2017171215933.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2335.061.2017171215933.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2335.061.2017272142801.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2340.061.2017171220911.hdf","time_start":"2000-03-04T23:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087081","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T23:45:00.000Z","id":"G1462782094-LAADS","original_format":"ECHO10","granule_size":"158.521973609924","browse_flag":true,"polygons":[["-51.170605 + 136.081887 -56.786986 172.051721 -38.54784 173.789061 -34.701521 147.13184 + -51.170605 136.081887"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2340.061.2017171220911.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2340.061.2017171220911.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2340.061.2017171220911.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2340.061.2017272143101.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2345.061.2017171220751.hdf","time_start":"2000-03-04T23:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087752","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T23:50:00.000Z","id":"G1462782368-LAADS","original_format":"ECHO10","granule_size":"156.649052619934","browse_flag":true,"polygons":[["-65.06534 + 113.359887 -74.556468 174.667533 -56.356721 172.81132 -51.149626 136.305633 + -65.06534 113.359887"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2345.061.2017171220751.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2345.061.2017171220751.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2345.061.2017171220751.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2345.061.2017272143436.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2350.061.2017171221314.hdf","time_start":"2000-03-04T23:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088393","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-04T23:55:00.000Z","id":"G1462782476-LAADS","original_format":"ECHO10","granule_size":"127.444804191589","browse_flag":true,"polygons":[["-70.485428 + 66.187385 -86.330898 -62.727446 -74.009386 175.749637 -65.196378 113.861165 + -70.485428 66.187385"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2350.061.2017171221314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2350.061.2017171221314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2350.061.2017171221314.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2350.061.2017272141047.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000064.2355.061.2017171221916.hdf","time_start":"2000-03-04T23:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088082","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T00:00:00.000Z","id":"G1462782460-LAADS","original_format":"ECHO10","granule_size":"23.9651374816895","browse_flag":true,"polygons":[["-62.068333 + 24.944755 -69.462322 -27.683392 -86.375805 -73.040762 -70.867901 66.276251 + -62.068333 24.944755"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2355.061.2017171221916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000064.2355.061.2017171221916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/064/MOD02QKM.A2000064.2355.061.2017171221916.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/064/MOBRGB.A2000064.2355.061.2017272140907.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0040.061.2017171202600.hdf","time_start":"2000-03-05T00:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074569","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T00:45:00.000Z","id":"G1462785155-LAADS","original_format":"ECHO10","granule_size":"21.1990766525269","browse_flag":true,"polygons":[["84.799903 + 121.789827 70.43372 -132.562333 66.686572 -82.013769 75.939582 -16.119337 + 84.799903 121.789827"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0040.061.2017171202600.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0040.061.2017171202600.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0040.061.2017171202600.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0040.061.2017272141017.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0045.061.2017171202633.hdf","time_start":"2000-03-05T00:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074881","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T00:50:00.000Z","id":"G1462785356-LAADS","original_format":"ECHO10","granule_size":"133.13588809967","browse_flag":true,"polygons":[["67.422147 + 140.807051 60.647161 -170.944538 70.797553 -132.598411 85.06921 115.242193 + 67.422147 140.807051"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0045.061.2017171202633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0045.061.2017171202633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0045.061.2017171202633.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0045.061.2017272142132.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0050.061.2017171202621.hdf","time_start":"2000-03-05T00:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074570","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T00:55:00.000Z","id":"G1462785158-LAADS","original_format":"ECHO10","granule_size":"164.459322929382","browse_flag":true,"polygons":[["49.641492 + 140.777687 45.371984 172.158094 60.961904 -171.509069 67.910648 139.900636 + 49.641492 140.777687"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0050.061.2017171202621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0050.061.2017171202621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0050.061.2017171202621.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0050.061.2017272143110.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0055.061.2017171202647.hdf","time_start":"2000-03-05T00:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074882","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T01:00:00.000Z","id":"G1462785335-LAADS","original_format":"ECHO10","granule_size":"161.688541412354","browse_flag":true,"polygons":[["31.822748 + 138.889028 28.508174 163.278421 45.597885 171.660714 50.099978 140.434647 + 31.822748 138.889028"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0055.061.2017171202647.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0055.061.2017171202647.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0055.061.2017171202647.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0055.061.2017272144207.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0100.061.2017171202642.hdf","time_start":"2000-03-05T01:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074571","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T01:05:00.000Z","id":"G1462785160-LAADS","original_format":"ECHO10","granule_size":"154.089937210083","browse_flag":true,"polygons":[["13.930032 + 136.116551 10.938551 157.547346 28.668336 162.921486 32.19591 138.720717 13.930032 + 136.116551"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0100.061.2017171202642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0100.061.2017171202642.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0100.061.2017171202642.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0100.061.2017272143210.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0105.061.2017171202647.hdf","time_start":"2000-03-05T01:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074883","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T01:10:00.000Z","id":"G1462785340-LAADS","original_format":"ECHO10","granule_size":"161.069412231445","browse_flag":true,"polygons":[["-3.782252 + 132.514002 -6.830092 153.406482 11.049798 157.34666 14.182735 136.038939 -3.782252 + 132.514002"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0105.061.2017171202647.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0105.061.2017171202647.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0105.061.2017171202647.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0105.061.2017272143154.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0110.061.2017171202645.hdf","time_start":"2000-03-05T01:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074572","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T01:15:00.000Z","id":"G1462785159-LAADS","original_format":"ECHO10","granule_size":"163.655964851379","browse_flag":true,"polygons":[["-21.402285 + 127.654929 -24.848047 150.331609 -6.76631 153.498002 -3.67346 132.499125 -21.402285 + 127.654929"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0110.061.2017171202645.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0110.061.2017171202645.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0110.061.2017171202645.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0110.061.2017272143012.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0115.061.2017171202632.hdf","time_start":"2000-03-05T01:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074573","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T01:20:00.000Z","id":"G1462785164-LAADS","original_format":"ECHO10","granule_size":"166.758175849915","browse_flag":true,"polygons":[["-38.553914 + 120.417306 -42.865613 148.162717 -24.667636 150.676998 -21.312394 127.678294 + -38.553914 120.417306"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0115.061.2017171202632.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0115.061.2017171202632.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0115.061.2017171202632.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0115.061.2017272142647.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0120.061.2017171202648.hdf","time_start":"2000-03-05T01:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074884","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T01:25:00.000Z","id":"G1462785341-LAADS","original_format":"ECHO10","granule_size":"169.974551200867","browse_flag":true,"polygons":[["-54.601622 + 107.73634 -60.78382 147.349979 -42.541512 148.715758 -38.482073 120.498046 + -54.601622 107.73634"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0120.061.2017171202648.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0120.061.2017171202648.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0120.061.2017171202648.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0120.061.2017272144109.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0125.061.2017171202646.hdf","time_start":"2000-03-05T01:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074574","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T01:30:00.000Z","id":"G1462785169-LAADS","original_format":"ECHO10","granule_size":"151.753666877747","browse_flag":true,"polygons":[["-67.372472 + 80.350111 -78.478344 152.531257 -60.327923 148.094263 -54.606083 108.022974 + -67.372472 80.350111"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0125.061.2017171202646.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0125.061.2017171202646.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0125.061.2017171202646.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0125.061.2017272142606.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0130.061.2017171202628.hdf","time_start":"2000-03-05T01:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074885","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T01:35:00.000Z","id":"G1462785338-LAADS","original_format":"ECHO10","granule_size":"107.644161224365","browse_flag":true,"polygons":[["-69.637188 + 29.822477 -82.92408 -64.808297 -77.888874 154.079201 -67.553449 80.890095 + -69.637188 29.822477"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0130.061.2017171202628.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0130.061.2017171202628.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0130.061.2017171202628.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0130.061.2017272141120.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0220.061.2017171202638.hdf","time_start":"2000-03-05T02:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074575","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T02:25:00.000Z","id":"G1462785165-LAADS","original_format":"ECHO10","granule_size":"40.9648408889771","browse_flag":true,"polygons":[["81.075725 + 108.483178 69.176275 -168.507137 68.830344 -115.894876 79.817992 -36.911233 + 81.075725 108.483178"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0220.061.2017171202638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0220.061.2017171202638.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0220.061.2017171202638.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0220.061.2017272141038.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0225.061.2017171202719.hdf","time_start":"2000-03-05T02:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074886","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T02:30:00.000Z","id":"G1462785355-LAADS","original_format":"ECHO10","granule_size":"149.456610679626","browse_flag":true,"polygons":[["63.45503 + 116.393443 57.481771 159.349509 69.543684 -168.756371 81.477764 105.293062 + 63.45503 116.393443"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0225.061.2017171202719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0225.061.2017171202719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0225.061.2017171202719.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0225.061.2017272142309.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0230.061.2017171202712.hdf","time_start":"2000-03-05T02:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074887","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T02:35:00.000Z","id":"G1462785352-LAADS","original_format":"ECHO10","granule_size":"164.074445724487","browse_flag":true,"polygons":[["45.661725 + 115.753306 41.688656 145.01907 57.776169 158.777474 63.945638 115.733498 45.661725 + 115.753306"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0230.061.2017171202712.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0230.061.2017171202712.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0230.061.2017171202712.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0230.061.2017272142553.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0235.061.2017171202707.hdf","time_start":"2000-03-05T02:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074888","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T02:40:00.000Z","id":"G1462785360-LAADS","original_format":"ECHO10","granule_size":"157.385127067566","browse_flag":true,"polygons":[["27.843874 + 113.618022 24.64033 137.0918 41.898193 144.552073 46.102873 115.440989 27.843874 + 113.618022"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0235.061.2017171202707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0235.061.2017171202707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0235.061.2017171202707.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0235.061.2017272144053.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0240.061.2017171202653.hdf","time_start":"2000-03-05T02:40:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074889","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T02:45:00.000Z","id":"G1462785347-LAADS","original_format":"ECHO10","granule_size":"161.639288902283","browse_flag":true,"polygons":[["10.050955 + 110.683881 7.074617 131.820252 24.788428 136.767688 28.191017 113.475652 10.050955 + 110.683881"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0240.061.2017171202653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0240.061.2017171202653.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0240.061.2017171202653.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0240.061.2017272144218.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0245.061.2017171202721.hdf","time_start":"2000-03-05T02:45:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074890","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T02:50:00.000Z","id":"G1462785346-LAADS","original_format":"ECHO10","granule_size":"163.189523696899","browse_flag":true,"polygons":[["-7.734166 + 106.837673 -10.837688 127.897201 7.177463 131.654789 10.273215 110.618149 + -7.734166 106.837673"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0245.061.2017171202721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0245.061.2017171202721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0245.061.2017171202721.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0245.061.2017272143154.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0250.061.2017171202713.hdf","time_start":"2000-03-05T02:50:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074891","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T02:55:00.000Z","id":"G1462785349-LAADS","original_format":"ECHO10","granule_size":"149.770589828491","browse_flag":true,"polygons":[["-25.287417 + 101.582039 -28.876851 125.04867 -10.761847 128.072435 -7.638026 106.832099 + -25.287417 101.582039"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0250.061.2017171202713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0250.061.2017171202713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0250.061.2017171202713.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0250.061.2017272143150.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0255.061.2017171202702.hdf","time_start":"2000-03-05T02:55:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074892","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T03:00:00.000Z","id":"G1462785351-LAADS","original_format":"ECHO10","granule_size":"155.266673088074","browse_flag":true,"polygons":[["-42.267961 + 93.507798 -46.87758 123.099617 -28.664116 125.437018 -25.197936 101.609048 + -42.267961 93.507798"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0255.061.2017171202702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0255.061.2017171202702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0255.061.2017171202702.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0255.061.2017272143336.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0300.061.2017171202725.hdf","time_start":"2000-03-05T03:00:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074893","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T03:05:00.000Z","id":"G1462785353-LAADS","original_format":"ECHO10","granule_size":"164.975697517395","browse_flag":true,"polygons":[["-57.889286 + 78.73068 -64.764752 122.850722 -46.523143 123.704859 -42.211153 93.633621 + -57.889286 78.73068"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0300.061.2017171202725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0300.061.2017171202725.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0300.061.2017171202725.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0300.061.2017272144215.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0305.061.2017171202719.hdf","time_start":"2000-03-05T03:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074894","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T03:10:00.000Z","id":"G1462785364-LAADS","original_format":"ECHO10","granule_size":"145.281371116638","browse_flag":true,"polygons":[["-69.156341 + 45.801874 -82.307055 133.862889 -64.282737 123.654313 -57.921996 79.079357 + -69.156341 45.801874"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0305.061.2017171202719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0305.061.2017171202719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0305.061.2017171202719.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0305.061.2017272141957.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0310.061.2017171202721.hdf","time_start":"2000-03-05T03:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074895","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T03:15:00.000Z","id":"G1462785363-LAADS","original_format":"ECHO10","granule_size":"82.5745677947998","browse_flag":true,"polygons":[["-68.121958 + -5.338758 -79.13381 -82.256394 -81.681115 135.476467 -69.436477 46.349771 + -68.121958 -5.338758"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0310.061.2017171202721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0310.061.2017171202721.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0310.061.2017171202721.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0310.061.2017272141236.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0400.061.2017171203305.hdf","time_start":"2000-03-05T04:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075516","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T04:05:00.000Z","id":"G1462785716-LAADS","original_format":"ECHO10","granule_size":"66.5261211395264","browse_flag":true,"polygons":[["77.185071 + 88.036792 67.26754 157.070298 70.374475 -151.454821 83.554135 -52.369674 77.185071 + 88.036792"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0400.061.2017171203305.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0400.061.2017171203305.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0400.061.2017171203305.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0400.061.2017272141223.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0405.061.2017171202716.hdf","time_start":"2000-03-05T04:05:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074896","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T04:10:00.000Z","id":"G1462785361-LAADS","original_format":"ECHO10","granule_size":"154.654491424561","browse_flag":true,"polygons":[["59.48164 + 91.754042 54.14167 130.472459 67.62816 156.661274 77.641051 86.093415 59.48164 + 91.754042"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0405.061.2017171202716.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0405.061.2017171202716.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0405.061.2017171202716.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0405.061.2017272142232.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0410.061.2017171202720.hdf","time_start":"2000-03-05T04:10:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074897","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T04:15:00.000Z","id":"G1462785354-LAADS","original_format":"ECHO10","granule_size":"162.643095970154","browse_flag":true,"polygons":[["41.678229 + 90.641039 37.948955 118.163624 54.417415 129.905205 59.967631 91.222685 41.678229 + 90.641039"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0410.061.2017171202720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0410.061.2017171202720.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0410.061.2017171202720.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0410.061.2017272142629.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0415.061.2017171202730.hdf","time_start":"2000-03-05T04:15:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074898","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T04:20:00.000Z","id":"G1462785362-LAADS","original_format":"ECHO10","granule_size":"166.204294204712","browse_flag":true,"polygons":[["23.863275 + 88.304456 20.74581 111.030349 38.14043 117.73711 42.102235 90.370643 23.863275 + 88.304456"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0415.061.2017171202730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0415.061.2017171202730.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0415.061.2017171202730.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0415.061.2017272142622.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0420.061.2017171202719.hdf","time_start":"2000-03-05T04:20:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074899","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T04:25:00.000Z","id":"G1462785358-LAADS","original_format":"ECHO10","granule_size":"146.538861274719","browse_flag":true,"polygons":[["6.087055 + 85.193216 3.109622 106.137471 20.881838 110.741776 24.183922 88.184404 6.087055 + 85.193216"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0420.061.2017171202719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0420.061.2017171202719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0420.061.2017171202719.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0420.061.2017272141922.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0425.061.2017171202724.hdf","time_start":"2000-03-05T04:25:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074900","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T04:30:00.000Z","id":"G1462785369-LAADS","original_format":"ECHO10","granule_size":"158.581176757812","browse_flag":true,"polygons":[["-11.598581 + 81.114422 -14.778368 102.488499 3.198754 106.044852 6.277741 85.144413 -11.598581 + 81.114422"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0425.061.2017171202724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0425.061.2017171202724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0425.061.2017171202724.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0425.061.2017272143216.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0430.061.2017171202718.hdf","time_start":"2000-03-05T04:30:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074901","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T04:35:00.000Z","id":"G1462785367-LAADS","original_format":"ECHO10","granule_size":"169.220291137695","browse_flag":true,"polygons":[["-29.147685 + 75.38681 -32.905515 99.818901 -14.674458 102.719753 -11.505197 81.125709 -29.147685 + 75.38681"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0430.061.2017171202718.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0430.061.2017171202718.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0430.061.2017171202718.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0430.061.2017272144054.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0435.061.2017171202733.hdf","time_start":"2000-03-05T04:35:00.000Z","updated":"2022-11-22T11:54:29.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074902","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T04:40:00.000Z","id":"G1462785372-LAADS","original_format":"ECHO10","granule_size":"164.297598838806","browse_flag":true,"polygons":[["-45.921667 + 66.299765 -50.885304 98.114886 -32.659248 100.244712 -29.060331 75.416646 + -45.921667 66.299765"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0435.061.2017171202733.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0435.061.2017171202733.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0435.061.2017171202733.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0435.061.2017272144133.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0440.061.2017171203834.hdf","time_start":"2000-03-05T04:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075210","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T04:45:00.000Z","id":"G1462785562-LAADS","original_format":"ECHO10","granule_size":"164.204629898071","browse_flag":true,"polygons":[["-60.984098 + 48.856788 -68.73529 98.566679 -50.499669 98.718611 -45.878263 66.464814 -60.984098 + 48.856788"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0440.061.2017171203834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0440.061.2017171203834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0440.061.2017171203834.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0440.061.2017272144103.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0445.061.2017171202743.hdf","time_start":"2000-03-05T04:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074903","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T04:50:00.000Z","id":"G1462785365-LAADS","original_format":"ECHO10","granule_size":"143.003629684448","browse_flag":true,"polygons":[["-70.271463 + 9.848023 -85.832606 127.188034 -68.225339 99.542022 -61.048073 49.27653 -70.271463 + 9.848023"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0445.061.2017171202743.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0445.061.2017171202743.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0445.061.2017171202743.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0445.061.2017272141914.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0450.061.2017171202719.hdf","time_start":"2000-03-05T04:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074904","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T04:55:00.000Z","id":"G1462785368-LAADS","original_format":"ECHO10","granule_size":"56.8471059799194","browse_flag":true,"polygons":[["-65.957469 + -38.829421 -75.255831 -103.872969 -85.167172 127.334893 -70.568618 10.257364 + -65.957469 -38.829421"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0450.061.2017171202719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0450.061.2017171202719.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0450.061.2017171202719.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0450.061.2017272141233.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0540.061.2017171202731.hdf","time_start":"2000-03-05T05:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074905","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T05:45:00.000Z","id":"G1462785366-LAADS","original_format":"ECHO10","granule_size":"96.0785465240479","browse_flag":true,"polygons":[["73.253491 + 65.313969 64.858119 124.264099 71.169597 171.68986 86.652341 -46.373135 73.253491 + 65.313969"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0540.061.2017171202731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0540.061.2017171202731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0540.061.2017171202731.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0540.061.2017272141458.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0545.061.2017171202742.hdf","time_start":"2000-03-05T05:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074906","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T05:50:00.000Z","id":"G1462785381-LAADS","original_format":"ECHO10","granule_size":"157.949298858643","browse_flag":true,"polygons":[["55.508121 + 66.939903 50.67217 102.253762 65.202411 123.759448 73.731331 63.959321 55.508121 + 66.939903"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0545.061.2017171202742.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0545.061.2017171202742.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0545.061.2017171202742.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0545.061.2017272142516.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0550.061.2017171202747.hdf","time_start":"2000-03-05T05:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074907","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T05:55:00.000Z","id":"G1462785371-LAADS","original_format":"ECHO10","granule_size":"164.917282104492","browse_flag":true,"polygons":[["37.697028 + 65.458673 34.170987 91.535204 50.935055 101.683745 55.987238 66.487342 37.697028 + 65.458673"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0550.061.2017171202747.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0550.061.2017171202747.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0550.061.2017171202747.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0550.061.2017272142308.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0555.061.2017171202800.hdf","time_start":"2000-03-05T05:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074908","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T06:00:00.000Z","id":"G1462785376-LAADS","original_format":"ECHO10","granule_size":"157.88924407959","browse_flag":true,"polygons":[["19.876064 + 62.955037 16.852652 84.976605 34.369299 91.049054 38.112822 65.244519 19.876064 + 62.955037"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0555.061.2017171202800.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0555.061.2017171202800.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0555.061.2017171202800.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0555.061.2017272141809.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0600.061.2017171202746.hdf","time_start":"2000-03-05T06:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075211","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T06:05:00.000Z","id":"G1462785550-LAADS","original_format":"ECHO10","granule_size":"143.531492233276","browse_flag":true,"polygons":[["2.131812 + 59.658864 -0.862423 80.513397 16.958513 84.822714 20.179822 62.854561 2.131812 + 59.658864"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0600.061.2017171202746.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0600.061.2017171202746.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0600.061.2017171202746.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0600.061.2017272142434.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0605.061.2017171202809.hdf","time_start":"2000-03-05T06:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074909","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T06:10:00.000Z","id":"G1462785378-LAADS","original_format":"ECHO10","granule_size":"154.927571296692","browse_flag":true,"polygons":[["-15.532532 + 55.294815 -18.806471 77.106276 -0.784885 80.496616 2.290757 59.621495 -15.532532 + 55.294815"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0605.061.2017171202809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0605.061.2017171202809.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0605.061.2017171202809.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0605.061.2017272143626.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0610.061.2017171202821.hdf","time_start":"2000-03-05T06:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074910","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T06:15:00.000Z","id":"G1462785375-LAADS","original_format":"ECHO10","granule_size":"143.272714614868","browse_flag":true,"polygons":[["-32.88683 + 49.062771 -36.838099 74.632476 -18.671763 77.375069 -15.441307 55.315038 -32.88683 + 49.062771"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0610.061.2017171202821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0610.061.2017171202821.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0610.061.2017171202821.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0610.061.2017272142656.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0615.061.2017171202814.hdf","time_start":"2000-03-05T06:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075212","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T06:20:00.000Z","id":"G1462785552-LAADS","original_format":"ECHO10","granule_size":"168.454393386841","browse_flag":true,"polygons":[["-49.497766 + 38.715908 -54.885475 73.219358 -36.561494 75.112956 -32.805049 49.111686 -49.497766 + 38.715908"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0615.061.2017171202814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0615.061.2017171202814.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0615.061.2017171202814.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0615.061.2017272144125.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0620.061.2017171202810.hdf","time_start":"2000-03-05T06:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074911","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T06:25:00.000Z","id":"G1462785373-LAADS","original_format":"ECHO10","granule_size":"159.052322387695","browse_flag":true,"polygons":[["-63.825283 + 17.901111 -72.685156 74.896696 -54.468767 73.89025 -49.470369 38.923828 -63.825283 + 17.901111"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0620.061.2017171202810.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0620.061.2017171202810.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0620.061.2017171202810.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0620.061.2017272143012.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0625.061.2017171202810.hdf","time_start":"2000-03-05T06:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075213","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T06:30:00.000Z","id":"G1462785553-LAADS","original_format":"ECHO10","granule_size":"140.521214485168","browse_flag":true,"polygons":[["-70.610696 + -26.923259 -87.328075 168.830483 -72.150007 75.965968 -63.930725 18.382263 + -70.610696 -26.923259"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0625.061.2017171202810.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0625.061.2017171202810.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0625.061.2017171202810.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0625.061.2017272141739.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0630.061.2017171202820.hdf","time_start":"2000-03-05T06:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075214","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T06:35:00.000Z","id":"G1462785554-LAADS","original_format":"ECHO10","granule_size":"32.8821887969971","browse_flag":true,"polygons":[["-63.392893 + -70.872973 -71.339535 -127.05194 -86.999992 157.016274 -70.952301 -26.707107 + -63.392893 -70.872973"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0630.061.2017171202820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0630.061.2017171202820.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0630.061.2017171202820.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0630.061.2017272141312.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0720.061.2017171202813.hdf","time_start":"2000-03-05T07:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075215","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T07:25:00.000Z","id":"G1462785555-LAADS","original_format":"ECHO10","granule_size":"124.081262588501","browse_flag":true,"polygons":[["69.303256 + 41.605748 62.073522 92.899646 71.119909 134.363377 86.450286 -1.183354 69.303256 + 41.605748"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0720.061.2017171202813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0720.061.2017171202813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0720.061.2017171202813.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0720.061.2017272142224.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0725.061.2017171202829.hdf","time_start":"2000-03-05T07:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074912","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T07:30:00.000Z","id":"G1462785370-LAADS","original_format":"ECHO10","granule_size":"160.083770751953","browse_flag":true,"polygons":[["51.532474 + 42.01873 47.100455 74.548267 62.397436 92.346962 69.791532 40.606164 51.532474 + 42.01873"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0725.061.2017171202829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0725.061.2017171202829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0725.061.2017171202829.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0725.061.2017272142452.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0730.061.2017171202842.hdf","time_start":"2000-03-05T07:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075216","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T07:35:00.000Z","id":"G1462785576-LAADS","original_format":"ECHO10","granule_size":"156.517733573914","browse_flag":true,"polygons":[["33.717907 + 40.252374 30.342399 65.138264 47.337323 74.028794 51.999262 41.646643 33.717907 + 40.252374"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0730.061.2017171202842.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0730.061.2017171202842.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0730.061.2017171202842.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0730.061.2017272142256.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0735.061.2017171202846.hdf","time_start":"2000-03-05T07:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075217","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T07:40:00.000Z","id":"G1462785565-LAADS","original_format":"ECHO10","granule_size":"149.599991798401","browse_flag":true,"polygons":[["15.909643 + 37.584254 12.906957 59.193324 30.509897 64.758371 34.10293 40.082237 15.909643 + 37.584254"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0735.061.2017171202846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0735.061.2017171202846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0735.061.2017171202846.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0735.061.2017272141536.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0740.061.2017171202839.hdf","time_start":"2000-03-05T07:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074913","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T07:45:00.000Z","id":"G1462785382-LAADS","original_format":"ECHO10","granule_size":"149.251924514771","browse_flag":true,"polygons":[["-1.816249 + 34.096921 -4.841174 54.939705 13.019468 58.994101 16.175264 37.508832 -1.816249 + 34.096921"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0740.061.2017171202839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0740.061.2017171202839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0740.061.2017171202839.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0740.061.2017272141635.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0745.061.2017171202816.hdf","time_start":"2000-03-05T07:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075218","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T07:50:00.000Z","id":"G1462785557-LAADS","original_format":"ECHO10","granule_size":"159.646626472473","browse_flag":true,"polygons":[["-19.453968 + 29.413637 -22.837335 51.76051 -4.773786 54.998725 -1.694079 34.073082 -19.453968 + 29.413637"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0745.061.2017171202816.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0745.061.2017171202816.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0745.061.2017171202816.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0745.061.2017272143040.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0750.061.2017171202824.hdf","time_start":"2000-03-05T07:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074914","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T07:55:00.000Z","id":"G1462785377-LAADS","original_format":"ECHO10","granule_size":"155.784034729004","browse_flag":true,"polygons":[["-36.680314 + 22.544176 -40.858942 49.480274 -22.669193 52.073293 -19.366764 29.435766 -36.680314 + 22.544176"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0750.061.2017171202824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0750.061.2017171202824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0750.061.2017171202824.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0750.061.2017272143150.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0755.061.2017171202822.hdf","time_start":"2000-03-05T07:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075219","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T08:00:00.000Z","id":"G1462785556-LAADS","original_format":"ECHO10","granule_size":"166.224243164062","browse_flag":true,"polygons":[["-52.901316 + 10.731155 -58.788294 48.442544 -40.548056 50.004616 -36.598569 22.590924 -52.901316 + 10.731155"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0755.061.2017171202822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0755.061.2017171202822.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0755.061.2017171202822.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0755.061.2017272143728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0800.061.2017171202835.hdf","time_start":"2000-03-05T08:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075220","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T08:05:00.000Z","id":"G1462785563-LAADS","original_format":"ECHO10","granule_size":"159.97484588623","browse_flag":true,"polygons":[["-66.327143 + -14.384814 -76.618725 52.012632 -58.346121 49.123098 -52.894149 10.991157 + -66.327143 -14.384814"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0800.061.2017171202835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0800.061.2017171202835.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0800.061.2017171202835.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0800.061.2017272143555.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0805.061.2017171202818.hdf","time_start":"2000-03-05T08:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075221","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T08:10:00.000Z","id":"G1462785566-LAADS","original_format":"ECHO10","granule_size":"128.515327453613","browse_flag":true,"polygons":[["-70.138028 + -63.619963 -84.656843 -170.766295 -76.045233 53.445272 -66.480793 -13.848769 + -70.138028 -63.619963"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0805.061.2017171202818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0805.061.2017171202818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0805.061.2017171202818.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0805.061.2017272141558.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0855.061.2017171202828.hdf","time_start":"2000-03-05T08:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075222","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T09:00:00.000Z","id":"G1462785561-LAADS","original_format":"ECHO10","granule_size":"31.6251449584961","browse_flag":true,"polygons":[["82.876173 + 5.757168 69.867444 97.770582 67.834336 149.992177 77.896218 -138.078273 82.876173 + 5.757168"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0855.061.2017171202828.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0855.061.2017171202828.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0855.061.2017171202828.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0855.061.2017272141307.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0900.061.2017171202858.hdf","time_start":"2000-03-05T09:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075223","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T09:05:00.000Z","id":"G1462785560-LAADS","original_format":"ECHO10","granule_size":"147.186670303345","browse_flag":true,"polygons":[["65.340351 + 17.404923 59.018428 62.700272 70.242559 97.608479 83.241138 1.426614 65.340351 + 17.404923"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0900.061.2017171202858.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0900.061.2017171202858.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0900.061.2017171202858.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0900.061.2017272142716.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0905.061.2017171202836.hdf","time_start":"2000-03-05T09:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074915","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T09:10:00.000Z","id":"G1462785379-LAADS","original_format":"ECHO10","granule_size":"162.505925178528","browse_flag":true,"polygons":[["47.554601 + 17.009318 43.446682 47.249007 59.313681 62.152141 65.829957 16.611336 47.554601 + 17.009318"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0905.061.2017171202836.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0905.061.2017171202836.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0905.061.2017171202836.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0905.061.2017272143222.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0910.061.2017171202824.hdf","time_start":"2000-03-05T09:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715074916","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T09:15:00.000Z","id":"G1462785385-LAADS","original_format":"ECHO10","granule_size":"161.399872779846","browse_flag":true,"polygons":[["29.737447 + 14.99834 26.483896 38.892342 43.663823 46.76781 48.005191 16.693974 29.737447 + 14.99834"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0910.061.2017171202824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0910.061.2017171202824.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0910.061.2017171202824.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0910.061.2017272143046.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0915.061.2017171203634.hdf","time_start":"2000-03-05T09:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075517","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T09:20:00.000Z","id":"G1462785721-LAADS","original_format":"ECHO10","granule_size":"157.164678573608","browse_flag":true,"polygons":[["11.938268 + 12.153025 8.960216 33.404219 26.641194 38.533928 30.098177 14.851268 11.938268 + 12.153025"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0915.061.2017171203634.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0915.061.2017171203634.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0915.061.2017171203634.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0915.061.2017272141304.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0920.061.2017171202909.hdf","time_start":"2000-03-05T09:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075224","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T09:25:00.000Z","id":"G1462785564-LAADS","original_format":"ECHO10","granule_size":"149.978947639465","browse_flag":true,"polygons":[["-5.75791 + 8.433167 -8.832493 29.401622 9.065153 33.234038 12.177389 12.075676 -5.75791 + 8.433167"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0920.061.2017171202909.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0920.061.2017171202909.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0920.061.2017171202909.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0920.061.2017272141947.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0925.061.2017171202901.hdf","time_start":"2000-03-05T09:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075225","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T09:30:00.000Z","id":"G1462785568-LAADS","original_format":"ECHO10","granule_size":"164.823841094971","browse_flag":true,"polygons":[["-23.348863 + 3.378637 -26.862698 26.420732 -8.766807 29.517015 -5.658158 8.420231 -23.348863 + 3.378637"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0925.061.2017171202901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0925.061.2017171202901.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0925.061.2017171202901.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0925.061.2017272142837.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0930.061.2017171202846.hdf","time_start":"2000-03-05T09:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075226","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T09:35:00.000Z","id":"G1462785574-LAADS","original_format":"ECHO10","granule_size":"154.210817337036","browse_flag":true,"polygons":[["-40.416242 + -4.259443 -44.871951 24.382825 -26.669978 26.810295 -23.256577 3.40479 -40.416242 + -4.259443"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0930.061.2017171202846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0930.061.2017171202846.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0930.061.2017171202846.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0930.061.2017272143006.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0935.061.2017171202834.hdf","time_start":"2000-03-05T09:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075227","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T09:40:00.000Z","id":"G1462785573-LAADS","original_format":"ECHO10","granule_size":"165.7213306427","browse_flag":true,"polygons":[["-56.264017 + -17.923199 -62.776519 23.827754 -44.53479 24.958609 -40.353345 -4.151179 -56.264017 + -17.923199"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0935.061.2017171202834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0935.061.2017171202834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0935.061.2017171202834.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0935.061.2017272144021.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0940.061.2017171202834.hdf","time_start":"2000-03-05T09:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075228","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T09:45:00.000Z","id":"G1462785570-LAADS","original_format":"ECHO10","granule_size":"157.520576477051","browse_flag":true,"polygons":[["-68.335427 + -47.98187 -80.414124 31.183871 -62.308489 24.558569 -56.282136 -17.604397 + -68.335427 -47.98187"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0940.061.2017171202834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0940.061.2017171202834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0940.061.2017171202834.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0940.061.2017272143748.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.0945.061.2017171202830.hdf","time_start":"2000-03-05T09:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075229","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T09:50:00.000Z","id":"G1462785577-LAADS","original_format":"ECHO10","granule_size":"102.456369400024","browse_flag":true,"polygons":[["-68.903348 + -99.384158 -80.962649 176.125216 -79.79747 33.015265 -68.545109 -47.438163 + -68.903348 -99.384158"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0945.061.2017171202830.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.0945.061.2017171202830.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.0945.061.2017171202830.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.0945.061.2017272141622.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1035.061.2017171202843.hdf","time_start":"2000-03-05T10:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075230","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T10:40:00.000Z","id":"G1462785572-LAADS","original_format":"ECHO10","granule_size":"59.335955619812","browse_flag":true,"polygons":[["79.12723 + -12.525486 68.290911 62.803165 69.694333 115.249843 81.724535 -156.981013 + 79.12723 -12.525486"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1035.061.2017171202843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1035.061.2017171202843.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1035.061.2017171202843.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1035.061.2017272141512.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1040.061.2017171202849.hdf","time_start":"2000-03-05T10:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075231","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T10:45:00.000Z","id":"G1462785571-LAADS","original_format":"ECHO10","granule_size":"161.564876556396","browse_flag":true,"polygons":[["61.368748 + -7.154358 55.747495 33.474374 68.653799 62.46907 79.560637 -15.035249 61.368748 + -7.154358"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1040.061.2017171202849.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1040.061.2017171202849.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1040.061.2017171202849.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1040.061.2017272143321.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1045.061.2017171204107.hdf","time_start":"2000-03-05T10:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075518","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T10:50:00.000Z","id":"G1462785726-LAADS","original_format":"ECHO10","granule_size":"160.02045249939","browse_flag":true,"polygons":[["43.572243 + -8.076032 39.731739 20.266541 56.030096 32.907387 61.858894 -7.771364 43.572243 + -8.076032"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1045.061.2017171204107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1045.061.2017171204107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1045.061.2017171204107.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1045.061.2017272143243.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1050.061.2017171202930.hdf","time_start":"2000-03-05T10:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075232","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T10:55:00.000Z","id":"G1462785575-LAADS","original_format":"ECHO10","granule_size":"150.613707542419","browse_flag":true,"polygons":[["25.754846 + -10.287555 22.600752 12.770489 39.932488 19.817766 44.007311 -8.331027 25.754846 + -10.287555"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1050.061.2017171202930.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1050.061.2017171202930.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1050.061.2017171202930.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1050.061.2017272141952.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1055.061.2017171202933.hdf","time_start":"2000-03-05T10:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075233","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T11:00:00.000Z","id":"G1462785578-LAADS","original_format":"ECHO10","granule_size":"153.276356697083","browse_flag":true,"polygons":[["7.971986 + -13.320518 4.999408 7.688911 22.745212 12.449284 26.090803 -10.424247 7.971986 + -13.320518"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1055.061.2017171202933.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1055.061.2017171202933.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1055.061.2017171202933.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1055.061.2017272141438.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1100.061.2017171202952.hdf","time_start":"2000-03-05T11:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075519","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T11:05:00.000Z","id":"G1462785723-LAADS","original_format":"ECHO10","granule_size":"151.159955024719","browse_flag":true,"polygons":[["-9.717627 + -17.276803 -12.859724 3.933906 5.09299 7.575019 8.179161 -13.377316 -9.717627 + -17.276803"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1100.061.2017171202952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1100.061.2017171202952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1100.061.2017171202952.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1100.061.2017272143037.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1105.061.2017171204052.hdf","time_start":"2000-03-05T11:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075520","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T11:10:00.000Z","id":"G1462785722-LAADS","original_format":"ECHO10","granule_size":"148.789121627808","browse_flag":true,"polygons":[["-27.22597 + -22.749141 -30.898785 1.186415 -12.770353 4.139758 -9.623227 -17.271691 -27.22597 + -22.749141"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1105.061.2017171204052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1105.061.2017171204052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1105.061.2017171204052.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1105.061.2017272142929.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1110.061.2017171202944.hdf","time_start":"2000-03-05T11:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075521","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T11:15:00.000Z","id":"G1462785733-LAADS","original_format":"ECHO10","granule_size":"169.500712394714","browse_flag":true,"polygons":[["-44.106873 + -31.307939 -48.888743 -0.650629 -30.668813 1.588398 -27.137955 -22.721095 + -44.106873 -31.307939"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1110.061.2017171202944.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1110.061.2017171202944.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1110.061.2017171202944.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1110.061.2017272144508.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1115.061.2017171203017.hdf","time_start":"2000-03-05T11:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075522","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T11:20:00.000Z","id":"G1462785725-LAADS","original_format":"ECHO10","granule_size":"163.198085784912","browse_flag":true,"polygons":[["-59.465449 + -47.344215 -66.756238 -0.538222 -48.518052 -0.017966 -44.056547 -31.162604 + -59.465449 -47.344215"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1115.061.2017171203017.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1115.061.2017171203017.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1115.061.2017171203017.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1115.061.2017272144306.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1120.061.2017171202957.hdf","time_start":"2000-03-05T11:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075523","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T11:25:00.000Z","id":"G1462785728-LAADS","original_format":"ECHO10","granule_size":"155.644527435303","browse_flag":true,"polygons":[["-69.803881 + -83.292265 -84.148641 16.536306 -66.261165 0.307294 -59.515205 -46.960188 + -69.803881 -83.292265"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1120.061.2017171202957.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1120.061.2017171202957.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1120.061.2017171202957.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1120.061.2017272142855.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1125.061.2017171202935.hdf","time_start":"2000-03-05T11:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075234","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T11:30:00.000Z","id":"G1462785569-LAADS","original_format":"ECHO10","granule_size":"71.9507293701172","browse_flag":true,"polygons":[["-67.076512 + -133.505132 -77.203668 156.116367 -83.512447 17.635967 -70.071415 -82.818911 + -67.076512 -133.505132"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1125.061.2017171202935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1125.061.2017171202935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1125.061.2017171202935.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1125.061.2017272141510.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1215.061.2017171203008.hdf","time_start":"2000-03-05T12:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075235","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T12:20:00.000Z","id":"G1462785589-LAADS","original_format":"ECHO10","granule_size":"93.2554063796997","browse_flag":true,"polygons":[["75.2185 + -34.177965 66.106757 29.204249 70.873339 78.950876 85.309656 -166.125525 75.2185 + -34.177965"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1215.061.2017171203008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1215.061.2017171203008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1215.061.2017171203008.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1215.061.2017272141956.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1220.061.2017171203022.hdf","time_start":"2000-03-05T12:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075524","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T12:25:00.000Z","id":"G1462785724-LAADS","original_format":"ECHO10","granule_size":"153.913634300232","browse_flag":true,"polygons":[["57.486181 + -31.884482 52.409709 5.030089 66.462932 28.733442 75.67338 -35.993319 57.486181 + -31.884482"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1220.061.2017171203022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1220.061.2017171203022.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1220.061.2017171203022.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1220.061.2017272144415.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1225.061.2017171202949.hdf","time_start":"2000-03-05T12:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075236","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T12:30:00.000Z","id":"G1462785581-LAADS","original_format":"ECHO10","granule_size":"163.494238853455","browse_flag":true,"polygons":[["39.58609 + -33.212504 35.96204 -6.450233 52.669644 4.489986 57.963582 -32.395741 39.58609 + -33.212504"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1225.061.2017171202949.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1225.061.2017171202949.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1225.061.2017171202949.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1225.061.2017272144340.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1230.061.2017171203010.hdf","time_start":"2000-03-05T12:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075237","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T12:35:00.000Z","id":"G1462785579-LAADS","original_format":"ECHO10","granule_size":"158.127165794373","browse_flag":true,"polygons":[["21.771997 + -35.625986 18.691762 -13.237091 36.148492 -6.870471 40.003587 -33.439582 21.771997 + -35.625986"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1230.061.2017171203010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1230.061.2017171203010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1230.061.2017171203010.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1230.061.2017272144254.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1235.061.2017171203026.hdf","time_start":"2000-03-05T12:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075525","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T12:40:00.000Z","id":"G1462785727-LAADS","original_format":"ECHO10","granule_size":"144.457843780518","browse_flag":true,"polygons":[["4.007497 + -38.831652 1.023165 -17.952563 18.822465 -13.507938 22.080123 -35.732741 4.007497 + -38.831652"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1235.061.2017171203026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1235.061.2017171203026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1235.061.2017171203026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1235.061.2017272144110.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1240.061.2017171203018.hdf","time_start":"2000-03-05T12:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075526","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T12:45:00.000Z","id":"G1462785730-LAADS","original_format":"ECHO10","granule_size":"153.09049987793","browse_flag":true,"polygons":[["-13.669724 + -43.046989 -16.894961 -21.474835 1.106424 -18.006555 4.180858 -38.864403 -13.669724 + -43.046989"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1240.061.2017171203018.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1240.061.2017171203018.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1240.061.2017171203018.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1240.061.2017272143027.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1245.061.2017171203020.hdf","time_start":"2000-03-05T12:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075527","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T12:50:00.000Z","id":"G1462785731-LAADS","original_format":"ECHO10","granule_size":"151.22598361969","browse_flag":true,"polygons":[["-31.079233 + -49.016755 -34.93237 -24.037902 -16.775335 -21.22529 -13.578565 -43.034041 + -31.079233 -49.016755"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1245.061.2017171203020.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1245.061.2017171203020.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1245.061.2017171203020.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1245.061.2017272143125.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1250.061.2017171202955.hdf","time_start":"2000-03-05T12:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075528","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T12:55:00.000Z","id":"G1462785729-LAADS","original_format":"ECHO10","granule_size":"161.018182754517","browse_flag":true,"polygons":[["-47.732946 + -58.697586 -52.900953 -25.600907 -34.669459 -23.587917 -30.992191 -48.985191 + -47.732946 -58.697586"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1250.061.2017171202955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1250.061.2017171202955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1250.061.2017171202955.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1250.061.2017272144401.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1255.061.2017171203014.hdf","time_start":"2000-03-05T12:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075529","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T13:00:00.000Z","id":"G1462785734-LAADS","original_format":"ECHO10","granule_size":"163.224665641785","browse_flag":true,"polygons":[["-62.452299 + -77.741011 -70.726109 -24.503893 -52.499982 -24.906445 -47.698086 -58.509575 + -62.452299 -77.741011"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1255.061.2017171203014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1255.061.2017171203014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1255.061.2017171203014.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1255.061.2017272144414.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1300.061.2017171203026.hdf","time_start":"2000-03-05T13:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075530","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T13:05:00.000Z","id":"G1462785735-LAADS","original_format":"ECHO10","granule_size":"147.691605567932","browse_flag":true,"polygons":[["-70.544011 + -119.784676 -87.128681 28.886555 -70.205964 -23.577466 -62.538891 -77.294394 + -70.544011 -119.784676"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1300.061.2017171203026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1300.061.2017171203026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1300.061.2017171203026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1300.061.2017272142611.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1305.061.2017171203002.hdf","time_start":"2000-03-05T13:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075531","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T13:10:00.000Z","id":"G1462785732-LAADS","original_format":"ECHO10","granule_size":"44.4133634567261","browse_flag":true,"polygons":[["-64.708868 + -166.302668 -73.29166 133.622156 -86.558038 23.725248 -70.863431 -119.464761 + -64.708868 -166.302668"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1305.061.2017171203002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1305.061.2017171203002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1305.061.2017171203002.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1305.061.2017272141521.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1355.061.2017171204208.hdf","time_start":"2000-03-05T13:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075532","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T14:00:00.000Z","id":"G1462785739-LAADS","original_format":"ECHO10","granule_size":"117.173027992249","browse_flag":true,"polygons":[["71.262567 + -57.688125 63.491382 -2.85707 71.250003 41.713979 87.184939 -133.472555 71.262567 + -57.688125"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1355.061.2017171204208.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1355.061.2017171204208.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1355.061.2017171204208.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1355.061.2017272142457.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1400.061.2017171203033.hdf","time_start":"2000-03-05T14:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075533","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T14:05:00.000Z","id":"G1462785737-LAADS","original_format":"ECHO10","granule_size":"160.081875801086","browse_flag":true,"polygons":[["53.502288 + -56.755287 48.87887 -22.912252 63.824609 -3.38796 71.746151 -58.84948 53.502288 + -56.755287"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1400.061.2017171203033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1400.061.2017171203033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1400.061.2017171203033.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1400.061.2017272143806.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1405.061.2017171203033.hdf","time_start":"2000-03-05T14:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075534","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T14:10:00.000Z","id":"G1462785736-LAADS","original_format":"ECHO10","granule_size":"161.272603988647","browse_flag":true,"polygons":[["35.689195 + -58.392178 32.236897 -32.923126 49.123129 -23.439337 53.97427 -57.169699 35.689195 + -58.392178"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1405.061.2017171203033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1405.061.2017171203033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1405.061.2017171203033.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1405.061.2017272144457.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1410.061.2017171203026.hdf","time_start":"2000-03-05T14:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075535","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T14:15:00.000Z","id":"G1462785738-LAADS","original_format":"ECHO10","granule_size":"138.473353385925","browse_flag":true,"polygons":[["17.789397 + -60.992882 14.76434 -39.1467 32.408881 -33.309256 36.084522 -58.588595 17.789397 + -60.992882"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1410.061.2017171203026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1410.061.2017171203026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1410.061.2017171203026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1410.061.2017272142915.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1415.061.2017171203039.hdf","time_start":"2000-03-05T14:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075536","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T14:20:00.000Z","id":"G1462785742-LAADS","original_format":"ECHO10","granule_size":"155.765785217285","browse_flag":true,"polygons":[["0.048789 + -64.389285 -2.959833 -43.551849 14.88419 -39.380869 18.069855 -61.080375 0.048789 + -64.389285"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1415.061.2017171203039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1415.061.2017171203039.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1415.061.2017171203039.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1415.061.2017272143350.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1420.061.2017171203032.hdf","time_start":"2000-03-05T14:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075537","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T14:25:00.000Z","id":"G1462785740-LAADS","original_format":"ECHO10","granule_size":"171.639346122742","browse_flag":true,"polygons":[["-17.612968 + -68.865552 -20.929387 -46.857333 -2.885274 -43.547014 0.183104 -64.368919 + -17.612968 -68.865552"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1420.061.2017171203032.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1420.061.2017171203032.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1420.061.2017171203032.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1420.061.2017272143724.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1425.061.2017171203029.hdf","time_start":"2000-03-05T14:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075538","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T14:30:00.000Z","id":"G1462785741-LAADS","original_format":"ECHO10","granule_size":"167.30840587616","browse_flag":true,"polygons":[["-34.898923 + -75.452659 -38.966798 -49.212554 -20.781513 -46.545665 -17.523523 -68.879211 + -34.898923 -75.452659"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1425.061.2017171203029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1425.061.2017171203029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1425.061.2017171203029.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1425.061.2017272143412.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1430.061.2017171203027.hdf","time_start":"2000-03-05T14:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075539","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T14:35:00.000Z","id":"G1462785743-LAADS","original_format":"ECHO10","granule_size":"146.590739250183","browse_flag":true,"polygons":[["-51.273209 + -86.513133 -56.905791 -50.440732 -38.666783 -48.713486 -34.813651 -75.416896 + -51.273209 -86.513133"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1430.061.2017171203027.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1430.061.2017171203027.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1430.061.2017171203027.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1430.061.2017272143054.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1435.061.2017171203255.hdf","time_start":"2000-03-05T14:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075894","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T14:40:00.000Z","id":"G1462785827-LAADS","original_format":"ECHO10","granule_size":"161.351895332336","browse_flag":true,"polygons":[["-65.143311 + -109.351377 -74.673783 -47.757936 -56.475191 -49.676073 -51.256428 -86.2782 + -65.143311 -109.351377"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1435.061.2017171203255.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1435.061.2017171203255.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1435.061.2017171203255.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1435.061.2017272144150.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1440.061.2017171203044.hdf","time_start":"2000-03-05T14:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075540","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T14:45:00.000Z","id":"G1462785745-LAADS","original_format":"ECHO10","granule_size":"137.078656196594","browse_flag":true,"polygons":[["-70.472964 + -156.667081 -86.260469 76.307832 -74.130097 -46.758797 -65.274409 -108.850598 + -70.472964 -156.667081"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1440.061.2017171203044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1440.061.2017171203044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1440.061.2017171203044.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1440.061.2017272142142.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1445.061.2017171203008.hdf","time_start":"2000-03-05T14:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075238","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T14:50:00.000Z","id":"G1462785580-LAADS","original_format":"ECHO10","granule_size":"21.5597448348999","browse_flag":true,"polygons":[["-61.965217 + 162.310412 -69.353846 109.978153 -86.342108 66.444874 -70.830878 -156.568716 + -61.965217 162.310412"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1445.061.2017171203008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1445.061.2017171203008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1445.061.2017171203008.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1445.061.2017272141527.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1530.061.2017171203029.hdf","time_start":"2000-03-05T15:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075239","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T15:35:00.000Z","id":"G1462785582-LAADS","original_format":"ECHO10","granule_size":"24.2878856658936","browse_flag":true,"polygons":[["84.692282 + -100.180587 70.408222 4.598055 66.757944 55.248952 76.054167 121.49405 84.692282 + -100.180587"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1530.061.2017171203029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1530.061.2017171203029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1530.061.2017171203029.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1530.061.2017272141626.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1535.061.2017171203046.hdf","time_start":"2000-03-05T15:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075541","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T15:40:00.000Z","id":"G1462785746-LAADS","original_format":"ECHO10","granule_size":"137.428115844727","browse_flag":true,"polygons":[["67.305208 + -81.702541 60.558468 -33.594605 70.772351 4.555717 84.965178 -106.632301 67.305208 + -81.702541"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1535.061.2017171203046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1535.061.2017171203046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1535.061.2017171203046.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1535.061.2017272142240.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1540.061.2017171203102.hdf","time_start":"2000-03-05T15:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075542","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T15:45:00.000Z","id":"G1462785744-LAADS","original_format":"ECHO10","granule_size":"161.807186126709","browse_flag":true,"polygons":[["49.525271 + -81.722623 45.265429 -50.40311 60.870821 -34.155302 67.795421 -82.573349 49.525271 + -81.722623"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1540.061.2017171203102.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1540.061.2017171203102.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1540.061.2017171203102.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1540.061.2017272143611.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1545.061.2017171203052.hdf","time_start":"2000-03-05T15:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075543","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T15:50:00.000Z","id":"G1462785749-LAADS","original_format":"ECHO10","granule_size":"156.258931159973","browse_flag":true,"polygons":[["31.708977 + -83.621488 28.39832 -59.253169 45.492127 -50.901787 49.983794 -82.071046 31.708977 + -83.621488"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1545.061.2017171203052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1545.061.2017171203052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1545.061.2017171203052.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1545.061.2017272143811.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1550.061.2017171203104.hdf","time_start":"2000-03-05T15:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075544","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T15:55:00.000Z","id":"G1462785748-LAADS","original_format":"ECHO10","granule_size":"148.757658004761","browse_flag":true,"polygons":[["13.904824 + -86.369615 10.913311 -64.943203 28.557103 -59.605732 32.080049 -83.770011 + 13.904824 -86.369615"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1550.061.2017171203104.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1550.061.2017171203104.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1550.061.2017171203104.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1550.061.2017272143540.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1555.061.2017171203616.hdf","time_start":"2000-03-05T15:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075895","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T16:00:00.000Z","id":"G1462785824-LAADS","original_format":"ECHO10","granule_size":"169.052292823792","browse_flag":true,"polygons":[["-3.891892 + -90.003967 -6.941907 -69.102358 11.024971 -65.145041 14.156693 -86.462267 + -3.891892 -90.003967"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1555.061.2017171203616.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1555.061.2017171203616.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1555.061.2017171203616.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1555.061.2017272143716.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1600.061.2017171203211.hdf","time_start":"2000-03-05T16:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075545","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T16:05:00.000Z","id":"G1462785747-LAADS","original_format":"ECHO10","granule_size":"163.685759544373","browse_flag":true,"polygons":[["-21.509491 + -94.880574 -24.96104 -72.164096 -6.879158 -69.003295 -3.783026 -90.02566 -21.509491 + -94.880574"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1600.061.2017171203211.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1600.061.2017171203211.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1600.061.2017171203211.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1600.061.2017272143814.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1605.061.2017171203109.hdf","time_start":"2000-03-05T16:05:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075546","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T16:10:00.000Z","id":"G1462785750-LAADS","original_format":"ECHO10","granule_size":"141.445854187012","browse_flag":true,"polygons":[["-38.656488 + -102.136894 -42.977223 -74.33255 -24.778794 -71.824784 -21.420353 -94.854529 + -38.656488 -102.136894"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1605.061.2017171203109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1605.061.2017171203109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1605.061.2017171203109.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1605.061.2017272143022.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1610.061.2017171203121.hdf","time_start":"2000-03-05T16:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075547","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T16:15:00.000Z","id":"G1462785752-LAADS","original_format":"ECHO10","granule_size":"165.072924613953","browse_flag":true,"polygons":[["-54.696002 + -114.86123 -60.89439 -75.134855 -42.651884 -73.78272 -38.586927 -102.047222 + -54.696002 -114.86123"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1610.061.2017171203121.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1610.061.2017171203121.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1610.061.2017171203121.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1610.061.2017272144648.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1615.061.2017171203104.hdf","time_start":"2000-03-05T16:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075548","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T16:20:00.000Z","id":"G1462785751-LAADS","original_format":"ECHO10","granule_size":"157.805406570435","browse_flag":true,"polygons":[["-67.433528 + -142.387565 -78.577442 -69.617662 -60.435312 -74.296862 -54.702677 -114.569124 + -67.433528 -142.387565"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1615.061.2017171203104.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1615.061.2017171203104.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1615.061.2017171203104.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1615.061.2017272144017.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1620.061.2017171203056.hdf","time_start":"2000-03-05T16:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075549","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T16:25:00.000Z","id":"G1462785754-LAADS","original_format":"ECHO10","granule_size":"110.940121650696","browse_flag":true,"polygons":[["-69.60446 + 167.021689 -82.840978 73.50349 -78.010091 -68.597898 -67.615831 -141.86009 + -69.60446 167.021689"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1620.061.2017171203056.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1620.061.2017171203056.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1620.061.2017171203056.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1620.061.2017272141913.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1710.061.2017171203101.hdf","time_start":"2000-03-05T17:10:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075550","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T17:15:00.000Z","id":"G1462785755-LAADS","original_format":"ECHO10","granule_size":"46.8872194290161","browse_flag":true,"polygons":[["80.964171 + -113.853559 69.141346 -31.296437 68.892306 21.341635 79.92032 100.777135 80.964171 + -113.853559"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1710.061.2017171203101.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1710.061.2017171203101.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1710.061.2017171203101.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1710.061.2017272141712.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1715.061.2017171203120.hdf","time_start":"2000-03-05T17:15:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075551","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T17:20:00.000Z","id":"G1462785753-LAADS","original_format":"ECHO10","granule_size":"146.610577583313","browse_flag":true,"polygons":[["63.341275 + -106.09822 57.420764 -63.342287 69.544761 -31.602315 81.377531 -117.002593 + 63.341275 -106.09822"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1715.061.2017171203120.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1715.061.2017171203120.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1715.061.2017171203120.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1715.061.2017272142657.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1720.061.2017171203113.hdf","time_start":"2000-03-05T17:20:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075552","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T17:25:00.000Z","id":"G1462785756-LAADS","original_format":"ECHO10","granule_size":"158.714106559753","browse_flag":true,"polygons":[["45.552337 + -106.752794 41.590871 -77.542727 57.690904 -63.850555 63.836514 -106.758197 + 45.552337 -106.752794"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1720.061.2017171203113.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1720.061.2017171203113.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1720.061.2017171203113.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1720.061.2017272142915.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1725.061.2017171203551.hdf","time_start":"2000-03-05T17:25:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075896","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T17:30:00.000Z","id":"G1462785833-LAADS","original_format":"ECHO10","granule_size":"155.744721412659","browse_flag":true,"polygons":[["27.734607 + -108.876857 24.537869 -85.445459 41.799866 -78.010237 45.995027 -107.044239 + 27.734607 -108.876857"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1725.061.2017171203551.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1725.061.2017171203551.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1725.061.2017171203551.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1725.061.2017272142355.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1730.061.2017171204151.hdf","time_start":"2000-03-05T17:30:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075897","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T17:35:00.000Z","id":"G1462785829-LAADS","original_format":"ECHO10","granule_size":"155.492472648621","browse_flag":true,"polygons":[["9.94687 + -111.828605 6.967949 -90.691891 24.682393 -85.754784 28.079892 -109.03312 + 9.94687 -111.828605"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1730.061.2017171204151.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1730.061.2017171204151.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1730.061.2017171204151.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1730.061.2017272143102.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1735.061.2017171203119.hdf","time_start":"2000-03-05T17:35:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075553","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T17:40:00.000Z","id":"G1462785760-LAADS","original_format":"ECHO10","granule_size":"156.367777824402","browse_flag":true,"polygons":[["-7.752203 + -115.659472 -10.856354 -94.591572 7.071253 -90.858747 10.165969 -111.891423 + -7.752203 -115.659472"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1735.061.2017171203119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1735.061.2017171203119.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1735.061.2017171203119.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1735.061.2017272143521.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1740.061.2017171203131.hdf","time_start":"2000-03-05T17:40:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075554","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T17:45:00.000Z","id":"G1462785759-LAADS","original_format":"ECHO10","granule_size":"153.682938575745","browse_flag":true,"polygons":[["-25.389707 + -120.946907 -28.984485 -97.447786 -10.781125 -94.409579 -7.655666 -115.666581 + -25.389707 -120.946907"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1740.061.2017171203131.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1740.061.2017171203131.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1740.061.2017171203131.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1740.061.2017272143145.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1745.061.2017171203123.hdf","time_start":"2000-03-05T17:45:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075898","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T17:50:00.000Z","id":"G1462785830-LAADS","original_format":"ECHO10","granule_size":"143.822949409485","browse_flag":true,"polygons":[["-42.366047 + -129.042974 -46.98426 -99.394989 -28.76983 -97.063869 -25.301876 -120.918155 + -42.366047 -129.042974"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1745.061.2017171203123.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1745.061.2017171203123.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1745.061.2017171203123.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1745.061.2017272143215.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1750.061.2017171203131.hdf","time_start":"2000-03-05T17:50:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075555","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T17:55:00.000Z","id":"G1462785757-LAADS","original_format":"ECHO10","granule_size":"165.652639389038","browse_flag":true,"polygons":[["-57.973084 + -143.88517 -64.869259 -99.629517 -46.6278 -98.792201 -42.308279 -128.918694 + -57.973084 -143.88517"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1750.061.2017171203131.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1750.061.2017171203131.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1750.061.2017171203131.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1750.061.2017272144424.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1755.061.2017171203253.hdf","time_start":"2000-03-05T17:55:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075899","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T18:00:00.000Z","id":"G1462785838-LAADS","original_format":"ECHO10","granule_size":"152.980755805969","browse_flag":true,"polygons":[["-69.196642 + -176.971583 -82.400147 -88.211091 -64.385083 -98.772809 -58.007996 -143.53156 + -69.196642 -176.971583"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1755.061.2017171203253.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1755.061.2017171203253.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1755.061.2017171203253.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1755.061.2017272143656.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1800.061.2017171203113.hdf","time_start":"2000-03-05T18:00:00.000Z","updated":"2022-11-22T11:54:36.760Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715075556","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T18:05:00.000Z","id":"G1462785758-LAADS","original_format":"ECHO10","granule_size":"85.2034921646118","browse_flag":true,"polygons":[["-68.03404 + 131.978706 -79.048083 55.633272 -81.797211 -87.113243 -69.434331 -176.46339 + -68.03404 131.978706"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1800.061.2017171203113.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1800.061.2017171203113.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1800.061.2017171203113.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1800.061.2017272141651.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1850.061.2017171204950.hdf","time_start":"2000-03-05T18:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078208","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T18:55:00.000Z","id":"G1462785990-LAADS","original_format":"ECHO10","granule_size":"73.5567874908447","browse_flag":true,"polygons":[["77.081922 + -134.387937 67.208958 -65.650948 70.404413 -14.254159 83.648158 85.55209 77.081922 + -134.387937"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1850.061.2017171204950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1850.061.2017171204950.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1850.061.2017171204950.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1850.061.2017272141751.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1855.061.2017171204959.hdf","time_start":"2000-03-05T18:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078209","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T19:00:00.000Z","id":"G1462785993-LAADS","original_format":"ECHO10","granule_size":"149.98676109314","browse_flag":true,"polygons":[["59.377619 + -130.706183 54.056667 -92.130127 67.577156 -66.077603 77.543454 -136.231403 + 59.377619 -130.706183"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1855.061.2017171204959.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1855.061.2017171204959.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1855.061.2017171204959.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1855.061.2017272143258.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1900.061.2017171205002.hdf","time_start":"2000-03-05T19:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078210","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T19:05:00.000Z","id":"G1462785998-LAADS","original_format":"ECHO10","granule_size":"159.590400695801","browse_flag":true,"polygons":[["41.57747 + -131.88825 37.849324 -104.371321 54.324416 -92.675218 59.859836 -131.306851 + 41.57747 -131.88825"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1900.061.2017171205002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1900.061.2017171205002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1900.061.2017171205002.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1900.061.2017272143027.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1905.061.2017171205014.hdf","time_start":"2000-03-05T19:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078211","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T19:10:00.000Z","id":"G1462785995-LAADS","original_format":"ECHO10","granule_size":"167.903909683228","browse_flag":true,"polygons":[["23.754789 + -134.205695 20.652225 -111.533118 38.053646 -104.849625 42.004207 -132.132532 + 23.754789 -134.205695"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1905.061.2017171205014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1905.061.2017171205014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1905.061.2017171205014.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1905.061.2017272144413.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1910.061.2017171205019.hdf","time_start":"2000-03-05T19:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078212","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T19:15:00.000Z","id":"G1462785999-LAADS","original_format":"ECHO10","granule_size":"163.082913398743","browse_flag":true,"polygons":[["5.983063 + -137.316632 3.005837 -116.37672 20.779947 -111.780791 24.079264 -134.320222 + 5.983063 -137.316632"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1910.061.2017171205019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1910.061.2017171205019.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1910.061.2017171205019.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1910.061.2017272144014.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1915.061.2017171205035.hdf","time_start":"2000-03-05T19:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078213","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T19:20:00.000Z","id":"G1462786003-LAADS","original_format":"ECHO10","granule_size":"145.541728019714","browse_flag":true,"polygons":[["-11.701016 + -141.403663 -14.882448 -120.024255 3.096007 -116.472485 6.173771 -137.366561 + -11.701016 -141.403663"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1915.061.2017171205035.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1915.061.2017171205035.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1915.061.2017171205035.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1915.061.2017272142511.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1920.061.2017171205023.hdf","time_start":"2000-03-05T19:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078214","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T19:25:00.000Z","id":"G1462786001-LAADS","original_format":"ECHO10","granule_size":"144.366751670837","browse_flag":true,"polygons":[["-29.163851 + -147.109882 -32.921557 -122.678736 -14.77827 -119.796742 -11.608908 -141.389612 + -29.163851 -147.109882"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1920.061.2017171205023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1920.061.2017171205023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1920.061.2017171205023.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1920.061.2017272143051.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1925.061.2017171205021.hdf","time_start":"2000-03-05T19:25:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078215","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T19:30:00.000Z","id":"G1462786000-LAADS","original_format":"ECHO10","granule_size":"160.050124168396","browse_flag":true,"polygons":[["-46.017706 + -156.259348 -50.992138 -124.386533 -32.676102 -122.244347 -29.076283 -147.080274 + -46.017706 -156.259348"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1925.061.2017171205021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1925.061.2017171205021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1925.061.2017171205021.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1925.061.2017272143948.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1930.061.2017171205025.hdf","time_start":"2000-03-05T19:30:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078216","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T19:35:00.000Z","id":"G1462786005-LAADS","original_format":"ECHO10","granule_size":"165.607524871826","browse_flag":true,"polygons":[["-61.062827 + -173.78458 -68.837357 -123.81021 -50.603931 -123.723573 -45.973665 -156.09586 + -61.062827 -173.78458"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1930.061.2017171205025.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1930.061.2017171205025.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1930.061.2017171205025.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1930.061.2017272144708.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1935.061.2017171205038.hdf","time_start":"2000-03-05T19:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078217","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T19:40:00.000Z","id":"G1462786002-LAADS","original_format":"ECHO10","granule_size":"153.501024246216","browse_flag":true,"polygons":[["-70.29247 + 147.044855 -85.912427 -94.279767 -68.328533 -122.904105 -61.131867 -173.36646 + -70.29247 147.044855"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1935.061.2017171205038.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1935.061.2017171205038.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1935.061.2017171205038.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1935.061.2017272143759.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.1940.061.2017171204947.hdf","time_start":"2000-03-05T19:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077922","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T19:45:00.000Z","id":"G1462785853-LAADS","original_format":"ECHO10","granule_size":"52.5849008560181","browse_flag":true,"polygons":[["-65.919246 + 98.414877 -75.157733 33.928453 -85.286632 -94.96906 -70.62162 147.456565 -65.919246 + 98.414877"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1940.061.2017171204947.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.1940.061.2017171204947.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.1940.061.2017171204947.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.1940.061.2017272141545.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2030.061.2017171205026.hdf","time_start":"2000-03-05T20:30:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078218","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T20:35:00.000Z","id":"G1462786010-LAADS","original_format":"ECHO10","granule_size":"97.0672044754028","browse_flag":true,"polygons":[["73.14771 + -157.129715 64.793403 -98.433658 71.185891 -51.13576 86.710852 92.602221 73.14771 + -157.129715"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2030.061.2017171205026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2030.061.2017171205026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2030.061.2017171205026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2030.061.2017272142125.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2035.061.2017171205105.hdf","time_start":"2000-03-05T20:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078219","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T20:40:00.000Z","id":"G1462786007-LAADS","original_format":"ECHO10","granule_size":"155.740917205811","browse_flag":true,"polygons":[["55.40222 + -155.555368 50.577597 -120.324422 65.131751 -98.928173 73.627545 -158.481009 + 55.40222 -155.555368"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2035.061.2017171205105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2035.061.2017171205105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2035.061.2017171205105.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2035.061.2017272143133.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2040.061.2017171205033.hdf","time_start":"2000-03-05T20:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077923","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T20:45:00.000Z","id":"G1462785855-LAADS","original_format":"ECHO10","granule_size":"154.83385181427","browse_flag":true,"polygons":[["37.589779 + -157.048527 34.062005 -130.985361 50.831747 -120.868067 55.881466 -156.008212 + 37.589779 -157.048527"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2040.061.2017171205033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2040.061.2017171205033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2040.061.2017171205033.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2040.061.2017272144758.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2045.061.2017171205042.hdf","time_start":"2000-03-05T20:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078220","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T20:50:00.000Z","id":"G1462786006-LAADS","original_format":"ECHO10","granule_size":"150.313452720642","browse_flag":true,"polygons":[["19.778076 + -159.550184 16.727843 -137.451256 34.238986 -131.381042 37.997527 -157.25529 + 19.778076 -159.550184"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2045.061.2017171205042.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2045.061.2017171205042.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2045.061.2017171205042.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2045.061.2017272143759.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2050.061.2017171205044.hdf","time_start":"2000-03-05T20:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078221","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T20:55:00.000Z","id":"G1462786004-LAADS","original_format":"ECHO10","granule_size":"147.729480743408","browse_flag":true,"polygons":[["2.024077 + -162.850468 -0.970435 -142.006047 16.852818 -137.703197 20.071827 -159.647603 + 2.024077 -162.850468"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2050.061.2017171205044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2050.061.2017171205044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2050.061.2017171205044.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2050.061.2017272143055.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2055.061.2017171205025.hdf","time_start":"2000-03-05T20:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715077924","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T21:00:00.000Z","id":"G1462785858-LAADS","original_format":"ECHO10","granule_size":"153.477046012878","browse_flag":true,"polygons":[["-15.64063 + -167.225348 -18.91666 -145.411589 -0.892608 -142.024398 2.18259 -162.889326 + -15.64063 -167.225348"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2055.061.2017171205025.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2055.061.2017171205025.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2055.061.2017171205025.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2055.061.2017272143225.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2100.061.2017171205204.hdf","time_start":"2000-03-05T21:00:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078222","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T21:05:00.000Z","id":"G1462786009-LAADS","original_format":"ECHO10","granule_size":"156.830311775208","browse_flag":true,"polygons":[["-32.994067 + -173.471783 -36.950083 -147.879363 -18.781786 -145.13912 -15.550368 -167.202834 + -32.994067 -173.471783"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2100.061.2017171205204.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2100.061.2017171205204.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2100.061.2017171205204.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2100.061.2017272144304.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2105.061.2017171210456.hdf","time_start":"2000-03-05T21:05:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078536","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T21:10:00.000Z","id":"G1462786030-LAADS","original_format":"ECHO10","granule_size":"167.570446968079","browse_flag":true,"polygons":[["-49.51944 + 176.206091 -54.908594 -149.283683 -36.67244 -147.40478 -32.911542 -173.425109 + -49.51944 176.206091"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2105.061.2017171210456.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2105.061.2017171210456.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2105.061.2017171210456.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2105.061.2017272144819.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2110.061.2017171210023.hdf","time_start":"2000-03-05T21:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078223","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T21:15:00.000Z","id":"G1462786008-LAADS","original_format":"ECHO10","granule_size":"162.667057991028","browse_flag":true,"polygons":[["-63.903089 + 155.216541 -72.796513 -147.465183 -54.492518 -148.544969 -49.492758 176.415762 + -63.903089 155.216541"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2110.061.2017171210023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2110.061.2017171210023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2110.061.2017171210023.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2110.061.2017272144751.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2115.061.2017171205056.hdf","time_start":"2000-03-05T21:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078224","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T21:20:00.000Z","id":"G1462786012-LAADS","original_format":"ECHO10","granule_size":"140.659087181091","browse_flag":true,"polygons":[["-70.610373 + 110.239248 -87.287772 -51.359022 -72.260091 -146.455314 -64.012128 155.693293 + -70.610373 110.239248"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2115.061.2017171205056.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2115.061.2017171205056.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2115.061.2017171205056.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2115.061.2017272142847.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2120.061.2017171205028.hdf","time_start":"2000-03-05T21:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078225","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T21:25:00.000Z","id":"G1462786014-LAADS","original_format":"ECHO10","granule_size":"29.6880760192871","browse_flag":true,"polygons":[["-63.351044 + 66.359375 -71.22509 10.609686 -87.030374 -63.342812 -71.003976 110.434905 + -63.351044 66.359375"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2120.061.2017171205028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2120.061.2017171205028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2120.061.2017171205028.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2120.061.2017272141600.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2210.061.2017171205036.hdf","time_start":"2000-03-05T22:10:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078537","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T22:15:00.000Z","id":"G1462786034-LAADS","original_format":"ECHO10","granule_size":"122.497702598572","browse_flag":true,"polygons":[["69.194221 + 179.149572 61.989553 -129.754153 71.102969 -88.47488 86.386382 137.765951 + 69.194221 179.149572"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2210.061.2017171205036.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2210.061.2017171205036.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2210.061.2017171205036.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2210.061.2017272142502.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2215.061.2017171210053.hdf","time_start":"2000-03-05T22:15:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078538","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T22:20:00.000Z","id":"G1462786026-LAADS","original_format":"ECHO10","granule_size":"159.321805953979","browse_flag":true,"polygons":[["51.419495 + 179.521895 47.005917 -148.047303 62.326916 -130.343183 69.683594 178.146667 + 51.419495 179.521895"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2215.061.2017171210053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2215.061.2017171210053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2215.061.2017171210053.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2215.061.2017272143936.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2220.061.2017171205101.hdf","time_start":"2000-03-05T22:20:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078226","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T22:25:00.000Z","id":"G1462786013-LAADS","original_format":"ECHO10","granule_size":"157.829174041748","browse_flag":true,"polygons":[["33.60499 + 177.744986 30.230516 -157.391886 47.231789 -148.530577 51.886354 179.148939 + 33.60499 177.744986"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2220.061.2017171205101.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2220.061.2017171205101.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2220.061.2017171205101.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2220.061.2017272144231.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2225.061.2017171205100.hdf","time_start":"2000-03-05T22:25:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078227","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T22:30:00.000Z","id":"G1462786017-LAADS","original_format":"ECHO10","granule_size":"156.764539718628","browse_flag":true,"polygons":[["15.797148 + 175.065435 12.790556 -163.317974 30.396326 -157.764069 33.988729 177.56884 + 15.797148 175.065435"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2225.061.2017171205100.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2225.061.2017171205100.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2225.061.2017171205100.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2225.061.2017272143953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2230.061.2017171205045.hdf","time_start":"2000-03-05T22:30:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078228","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T22:35:00.000Z","id":"G1462786011-LAADS","original_format":"ECHO10","granule_size":"145.914616584778","browse_flag":true,"polygons":[["-1.930873 + 171.56464 -4.957868 -167.583366 12.905976 -163.534947 16.062367 174.983734 + -1.930873 171.56464"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2230.061.2017171205045.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2230.061.2017171205045.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2230.061.2017171205045.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2230.061.2017272142854.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2235.061.2017171205050.hdf","time_start":"2000-03-05T22:35:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078229","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T22:40:00.000Z","id":"G1462786022-LAADS","original_format":"ECHO10","granule_size":"159.368805885315","browse_flag":true,"polygons":[["-19.566277 + 166.864853 -22.955082 -170.75847 -4.890637 -167.523797 -1.80488 171.537031 + -19.566277 166.864853"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2235.061.2017171205050.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2235.061.2017171205050.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2235.061.2017171205050.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2235.061.2017272143415.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2240.061.2017171205107.hdf","time_start":"2000-03-05T22:40:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078230","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T22:45:00.000Z","id":"G1462786015-LAADS","original_format":"ECHO10","granule_size":"159.277404785156","browse_flag":true,"polygons":[["-36.788426 + 159.972912 -40.978455 -173.030876 -22.788974 -170.44115 -19.477223 166.889529 + -36.788426 159.972912"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2240.061.2017171205107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2240.061.2017171205107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2240.061.2017171205107.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2240.061.2017272143821.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2245.061.2017171205110.hdf","time_start":"2000-03-05T22:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078539","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T22:50:00.000Z","id":"G1462786036-LAADS","original_format":"ECHO10","granule_size":"161.540031433105","browse_flag":true,"polygons":[["-53.007807 + 148.133936 -58.91056 -174.060081 -40.669057 -172.505286 -36.714032 160.045723 + -53.007807 148.133936"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2245.061.2017171205110.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2245.061.2017171205110.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2245.061.2017171205110.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2245.061.2017272143748.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2250.061.2017171205116.hdf","time_start":"2000-03-05T22:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078231","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T22:55:00.000Z","id":"G1462786021-LAADS","original_format":"ECHO10","granule_size":"157.383651733398","browse_flag":true,"polygons":[["-66.349262 + 123.053834 -76.641997 -170.185256 -58.465782 -173.256537 -53.001474 148.394969 + -66.349262 123.053834"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2250.061.2017171205116.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2250.061.2017171205116.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2250.061.2017171205116.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2250.061.2017272143725.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2255.061.2017171205105.hdf","time_start":"2000-03-05T22:55:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078232","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T23:00:00.000Z","id":"G1462786029-LAADS","original_format":"ECHO10","granule_size":"116.812757492065","browse_flag":true,"polygons":[["-70.110073 + 73.528948 -84.543428 -32.554036 -76.078806 -169.009871 -66.505307 123.573276 + -70.110073 73.528948"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2255.061.2017171205105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2255.061.2017171205105.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2255.061.2017171205105.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2255.061.2017272141931.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2345.061.2017171205044.hdf","time_start":"2000-03-05T23:45:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078233","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-05T23:50:00.000Z","id":"G1462786016-LAADS","original_format":"ECHO10","granule_size":"33.3727407455444","browse_flag":true,"polygons":[["82.767957 + 143.577026 69.824395 -125.042237 67.891696 -72.77476 78.009785 -0.47038 82.767957 + 143.577026"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2345.061.2017171205044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2345.061.2017171205044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2345.061.2017171205044.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2345.061.2017272141919.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2350.061.2017171205103.hdf","time_start":"2000-03-05T23:50:00.000Z","updated":"2022-11-22T11:54:49.580Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715078234","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-05T23:55:00.000Z","id":"G1462786018-LAADS","original_format":"ECHO10","granule_size":"141.415910720825","browse_flag":true,"polygons":[["65.225493 + 154.930497 58.918331 -159.917913 70.194098 -125.204108 83.13563 139.3532 65.225493 + 154.930497"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2350.061.2017171205103.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2350.061.2017171205103.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2350.061.2017171205103.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2350.061.2017272143041.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000065.2355.061.2017171211946.hdf","time_start":"2000-03-05T23:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081525","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T00:00:00.000Z","id":"G1462786035-LAADS","original_format":"ECHO10","granule_size":"157.543578147888","browse_flag":true,"polygons":[["47.43634 + 154.510961 43.339791 -175.32206 59.223612 -160.494723 65.715007 154.139746 + 47.43634 154.510961"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2355.061.2017171211946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000065.2355.061.2017171211946.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/065/MOD02QKM.A2000065.2355.061.2017171211946.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/065/MOBRGB.A2000065.2355.061.2017272144440.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0000.061.2017171211935.hdf","time_start":"2000-03-06T00:00:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081203","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T00:05:00.000Z","id":"G1462788543-LAADS","original_format":"ECHO10","granule_size":"162.049409866333","browse_flag":true,"polygons":[["29.616597 + 152.494234 26.367625 176.352743 43.55514 -175.799069 47.886698 154.199574 + 29.616597 152.494234"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0000.061.2017171211935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0000.061.2017171211935.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0000.061.2017171211935.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0000.061.2017272144731.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0005.061.2017171211929.hdf","time_start":"2000-03-06T00:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081526","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T00:10:00.000Z","id":"G1462788702-LAADS","original_format":"ECHO10","granule_size":"142.857711791992","browse_flag":true,"polygons":[["11.818772 + 149.640013 8.836473 170.894799 26.52057 176.014347 29.976544 152.344553 11.818772 + 149.640013"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0005.061.2017171211929.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0005.061.2017171211929.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0005.061.2017171211929.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0005.061.2017272143727.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0010.061.2017171211940.hdf","time_start":"2000-03-06T00:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081204","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T00:15:00.000Z","id":"G1462788540-LAADS","original_format":"ECHO10","granule_size":"152.305058479309","browse_flag":true,"polygons":[["-5.883652 + 145.929624 -8.958192 166.886644 8.943059 170.713716 12.053122 149.581018 -5.883652 + 145.929624"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0010.061.2017171211940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0010.061.2017171211940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0010.061.2017171211940.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0010.061.2017272143930.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0015.061.2017171213509.hdf","time_start":"2000-03-06T00:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083453","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T00:20:00.000Z","id":"G1462789074-LAADS","original_format":"ECHO10","granule_size":"154.121646881104","browse_flag":true,"polygons":[["-23.473027 + 140.853399 -26.997646 163.935239 -8.894185 167.026162 -5.788488 145.906271 + -23.473027 140.853399"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0015.061.2017171213509.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0015.061.2017171213509.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0015.061.2017171213509.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0015.061.2017272143758.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0020.061.2017171213055.hdf","time_start":"2000-03-06T00:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083119","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T00:25:00.000Z","id":"G1462789014-LAADS","original_format":"ECHO10","granule_size":"165.410145759583","browse_flag":true,"polygons":[["-40.538612 + 133.191525 -45.003995 161.875158 -26.796267 164.299332 -23.384891 140.880566 + -40.538612 133.191525"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0020.061.2017171213055.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0020.061.2017171213055.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0020.061.2017171213055.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0020.061.2017272143820.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0025.061.2017171213131.hdf","time_start":"2000-03-06T00:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083120","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T00:30:00.000Z","id":"G1462789017-LAADS","original_format":"ECHO10","granule_size":"166.504421234131","browse_flag":true,"polygons":[["-56.370416 + 119.450438 -62.905031 161.335127 -44.662484 162.453332 -40.472801 133.291697 + -56.370416 119.450438"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0025.061.2017171213131.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0025.061.2017171213131.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0025.061.2017171213131.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0025.061.2017272145002.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0030.061.2017171213923.hdf","time_start":"2000-03-06T00:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083121","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T00:35:00.000Z","id":"G1462789023-LAADS","original_format":"ECHO10","granule_size":"151.024350166321","browse_flag":true,"polygons":[["-68.393921 + 89.214364 -80.520925 169.276963 -62.432256 162.221451 -56.389952 119.770729 + -68.393921 89.214364"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0030.061.2017171213923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0030.061.2017171213923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0030.061.2017171213923.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0030.061.2017272143101.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0035.061.2017171213107.hdf","time_start":"2000-03-06T00:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083122","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T00:40:00.000Z","id":"G1462789018-LAADS","original_format":"ECHO10","granule_size":"92.0842618942261","browse_flag":true,"polygons":[["-68.923482 + 37.974224 -80.916233 -46.271549 -79.917262 170.671527 -68.641566 89.785295 + -68.923482 37.974224"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0035.061.2017171213107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0035.061.2017171213107.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0035.061.2017171213107.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0035.061.2017272141835.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0125.061.2017171211916.hdf","time_start":"2000-03-06T01:25:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081527","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T01:30:00.000Z","id":"G1462788701-LAADS","original_format":"ECHO10","granule_size":"56.8716373443604","browse_flag":true,"polygons":[["79.012285 + 125.115782 68.231704 -159.974683 69.738495 -107.568169 81.837127 -19.223891 + 79.012285 125.115782"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0125.061.2017171211916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0125.061.2017171211916.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0125.061.2017171211916.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0125.061.2017272141820.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0130.061.2017171212010.hdf","time_start":"2000-03-06T01:30:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081528","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T01:35:00.000Z","id":"G1462788705-LAADS","original_format":"ECHO10","granule_size":"152.37698841095","browse_flag":true,"polygons":[["61.247643 + 130.370496 55.655767 170.830048 68.612088 -160.342174 79.449923 122.664553 + 61.247643 130.370496"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0130.061.2017171212010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0130.061.2017171212010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0130.061.2017171212010.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0130.061.2017272143630.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0135.061.2017171211944.hdf","time_start":"2000-03-06T01:35:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081529","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T01:40:00.000Z","id":"G1462788700-LAADS","original_format":"ECHO10","granule_size":"166.674882888794","browse_flag":true,"polygons":[["43.451901 + 129.4439 39.618449 157.707724 55.929684 170.287848 61.739712 129.778812 43.451901 + 129.4439"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0135.061.2017171211944.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0135.061.2017171211944.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0135.061.2017171211944.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0135.061.2017272143649.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0140.061.2017171211942.hdf","time_start":"2000-03-06T01:40:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081205","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T01:45:00.000Z","id":"G1462788534-LAADS","original_format":"ECHO10","granule_size":"162.410417556763","browse_flag":true,"polygons":[["25.633303 + 127.200516 22.480666 150.233768 39.818776 157.257788 43.883752 129.163652 + 25.633303 127.200516"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0140.061.2017171211942.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0140.061.2017171211942.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0140.061.2017171211942.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0140.061.2017272145347.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0145.061.2017171211936.hdf","time_start":"2000-03-06T01:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081530","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T01:50:00.000Z","id":"G1462788708-LAADS","original_format":"ECHO10","granule_size":"153.379936218262","browse_flag":true,"polygons":[["7.847128 + 124.176257 4.873162 145.178195 22.622024 149.928662 25.965461 127.079909 7.847128 + 124.176257"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0145.061.2017171211936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0145.061.2017171211936.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0145.061.2017171211936.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0145.061.2017272143746.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0150.061.2017171212850.hdf","time_start":"2000-03-06T01:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081531","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T01:55:00.000Z","id":"G1462788706-LAADS","original_format":"ECHO10","granule_size":"165.235059738159","browse_flag":true,"polygons":[["-9.845043 + 120.208976 -12.989128 141.414551 4.968579 145.050528 8.050775 124.116649 -9.845043 + 120.208976"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0150.061.2017171212850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0150.061.2017171212850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0150.061.2017171212850.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0150.061.2017272144107.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0155.061.2017171212016.hdf","time_start":"2000-03-06T01:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081532","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T02:00:00.000Z","id":"G1462788707-LAADS","original_format":"ECHO10","granule_size":"166.501114845276","browse_flag":true,"polygons":[["-27.352319 + 114.721091 -31.027267 138.655113 -12.895655 141.60638 -9.750966 120.212276 + -27.352319 114.721091"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0155.061.2017171212016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0155.061.2017171212016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0155.061.2017171212016.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0155.061.2017272143810.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0200.061.2017171211958.hdf","time_start":"2000-03-06T02:00:00.000Z","updated":"2022-11-22T11:54:56.170Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715080819","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T02:05:00.000Z","id":"G1462788486-LAADS","original_format":"ECHO10","granule_size":"165.817791938782","browse_flag":true,"polygons":[["-44.229958 + 106.133527 -49.018908 136.849318 -30.79811 139.081846 -27.264664 114.751997 + -44.229958 106.133527"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0200.061.2017171211958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0200.061.2017171211958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0200.061.2017171211958.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0200.061.2017272144354.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0205.061.2017171211951.hdf","time_start":"2000-03-06T02:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081533","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T02:10:00.000Z","id":"G1462788709-LAADS","original_format":"ECHO10","granule_size":"163.666721343994","browse_flag":true,"polygons":[["-59.568396 + 90.001943 -66.886742 136.956776 -48.647803 137.465187 -44.176915 106.270466 + -59.568396 90.001943"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0205.061.2017171211951.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0205.061.2017171211951.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0205.061.2017171211951.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0205.061.2017272144939.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0210.061.2017171213106.hdf","time_start":"2000-03-06T02:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083123","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T02:15:00.000Z","id":"G1462789024-LAADS","original_format":"ECHO10","granule_size":"145.173323631287","browse_flag":true,"polygons":[["-69.842469 + 53.856132 -84.260173 154.660673 -66.390009 137.856558 -59.61867 90.38859 -69.842469 + 53.856132"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0210.061.2017171213106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0210.061.2017171213106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0210.061.2017171213106.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0210.061.2017272142623.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0215.061.2017171213046.hdf","time_start":"2000-03-06T02:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083124","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T02:20:00.000Z","id":"G1462789028-LAADS","original_format":"ECHO10","granule_size":"66.3086938858032","browse_flag":true,"polygons":[["-67.053324 + 3.638469 -77.061262 -66.475344 -83.604132 156.023471 -70.163799 54.356446 + -67.053324 3.638469"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0215.061.2017171213046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0215.061.2017171213046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0215.061.2017171213046.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0215.061.2017272141845.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0305.061.2017171211945.hdf","time_start":"2000-03-06T03:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081206","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T03:10:00.000Z","id":"G1462788539-LAADS","original_format":"ECHO10","granule_size":"85.7662105560303","browse_flag":true,"polygons":[["75.095775 + 103.201346 66.034767 166.476603 70.89586 -143.901339 85.375154 -27.303729 + 75.095775 103.201346"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0305.061.2017171211945.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0305.061.2017171211945.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0305.061.2017171211945.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0305.061.2017272142250.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0310.061.2017171212100.hdf","time_start":"2000-03-06T03:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081207","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T03:15:00.000Z","id":"G1462788536-LAADS","original_format":"ECHO10","granule_size":"158.676930427551","browse_flag":true,"polygons":[["57.365222 + 105.636577 52.30884 142.431948 66.393697 165.99686 75.565467 101.616913 57.365222 + 105.636577"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0310.061.2017171212100.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0310.061.2017171212100.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0310.061.2017171212100.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0310.061.2017272143340.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0315.061.2017171212003.hdf","time_start":"2000-03-06T03:15:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081534","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T03:20:00.000Z","id":"G1462788711-LAADS","original_format":"ECHO10","granule_size":"162.666114807129","browse_flag":true,"polygons":[["39.468831 + 104.315884 35.850449 131.001612 52.567378 141.894274 57.846004 105.160427 + 39.468831 104.315884"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0315.061.2017171212003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0315.061.2017171212003.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0315.061.2017171212003.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0315.061.2017272143537.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0320.061.2017171212007.hdf","time_start":"2000-03-06T03:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081535","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T03:25:00.000Z","id":"G1462788710-LAADS","original_format":"ECHO10","granule_size":"162.707416534424","browse_flag":true,"polygons":[["21.654431 + 101.887928 18.575628 124.233587 36.036619 130.581062 39.881369 104.084589 + 21.654431 101.887928"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0320.061.2017171212007.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0320.061.2017171212007.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0320.061.2017171212007.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0320.061.2017272144141.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0325.061.2017171212923.hdf","time_start":"2000-03-06T03:25:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081829","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T03:30:00.000Z","id":"G1462788829-LAADS","original_format":"ECHO10","granule_size":"160.165891647339","browse_flag":true,"polygons":[["3.890922 + 98.655394 0.904276 119.527286 18.706296 123.962888 21.958342 101.759519 3.890922 + 98.655394"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0325.061.2017171212923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0325.061.2017171212923.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0325.061.2017171212923.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0325.061.2017272144054.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0330.061.2017171212412.hdf","time_start":"2000-03-06T03:30:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081536","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T03:35:00.000Z","id":"G1462788712-LAADS","original_format":"ECHO10","granule_size":"162.981544494629","browse_flag":true,"polygons":[["-13.787588 + 94.421718 -17.016945 116.013353 0.986909 119.476341 4.062073 98.612983 -13.787588 + 94.421718"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0330.061.2017171212412.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0330.061.2017171212412.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0330.061.2017171212412.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0330.061.2017272144332.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0335.061.2017171212021.hdf","time_start":"2000-03-06T03:35:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081208","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T03:40:00.000Z","id":"G1462788542-LAADS","original_format":"ECHO10","granule_size":"144.975784301758","browse_flag":true,"polygons":[["-31.195272 + 88.441634 -35.05344 113.455959 -16.896047 116.263744 -13.695945 94.441155 + -31.195272 88.441634"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0335.061.2017171212021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0335.061.2017171212021.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0335.061.2017171212021.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0335.061.2017272143433.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0340.061.2017171212023.hdf","time_start":"2000-03-06T03:40:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081537","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T03:45:00.000Z","id":"G1462788718-LAADS","original_format":"ECHO10","granule_size":"162.727798461914","browse_flag":true,"polygons":[["-47.844848 + 78.731624 -53.022982 111.907051 -34.79087 113.909924 -31.110703 88.479583 + -47.844848 78.731624"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0340.061.2017171212023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0340.061.2017171212023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0340.061.2017171212023.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0340.061.2017272144628.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0345.061.2017171213133.hdf","time_start":"2000-03-06T03:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083125","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T03:50:00.000Z","id":"G1462789026-LAADS","original_format":"ECHO10","granule_size":"159.88319683075","browse_flag":true,"polygons":[["-62.54145 + 59.582692 -70.851335 112.892455 -52.622194 112.520609 -47.809118 78.917365 + -62.54145 59.582692"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0345.061.2017171213133.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0345.061.2017171213133.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0345.061.2017171213133.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0345.061.2017272144411.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0350.061.2017171213115.hdf","time_start":"2000-03-06T03:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083126","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T03:55:00.000Z","id":"G1462789027-LAADS","original_format":"ECHO10","granule_size":"140.2396068573","browse_flag":true,"polygons":[["-70.55874 + 17.356918 -87.177925 168.522646 -70.327219 113.968422 -62.627257 60.040363 + -70.55874 17.356918"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0350.061.2017171213115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0350.061.2017171213115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0350.061.2017171213115.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0350.061.2017272142412.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0355.061.2017171213053.hdf","time_start":"2000-03-06T03:55:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083127","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T04:00:00.000Z","id":"G1462789029-LAADS","original_format":"ECHO10","granule_size":"42.4266920089722","browse_flag":true,"polygons":[["-64.642906 + -29.041189 -73.1635 -88.967051 -86.583272 163.34205 -70.891668 17.669712 -64.642906 + -29.041189"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0355.061.2017171213053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0355.061.2017171213053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0355.061.2017171213053.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0355.061.2017272141926.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0445.061.2017171212031.hdf","time_start":"2000-03-06T04:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081209","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T04:50:00.000Z","id":"G1462788544-LAADS","original_format":"ECHO10","granule_size":"116.104216575623","browse_flag":true,"polygons":[["71.147859 + 79.84578 63.409823 134.461823 71.247701 178.854316 87.173031 6.367035 71.147859 + 79.84578"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0445.061.2017171212031.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0445.061.2017171212031.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0445.061.2017171212031.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0445.061.2017272142226.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0450.061.2017171212032.hdf","time_start":"2000-03-06T04:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081538","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T04:55:00.000Z","id":"G1462788713-LAADS","original_format":"ECHO10","granule_size":"160.188182830811","browse_flag":true,"polygons":[["53.386707 + 80.750158 48.778923 114.501449 63.748453 133.915289 71.632924 78.700362 53.386707 + 80.750158"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0450.061.2017171212032.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0450.061.2017171212032.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0450.061.2017171212032.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0450.061.2017272143616.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0455.061.2017171212035.hdf","time_start":"2000-03-06T04:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081539","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T05:00:00.000Z","id":"G1462788714-LAADS","original_format":"ECHO10","granule_size":"162.409418106079","browse_flag":true,"polygons":[["35.571317 + 79.206489 32.131167 104.523609 49.024339 113.966482 53.860966 80.478314 35.571317 + 79.206489"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0455.061.2017171212035.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0455.061.2017171212035.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0455.061.2017171212035.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0455.061.2017272143104.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0500.061.2017171212030.hdf","time_start":"2000-03-06T05:00:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081830","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T05:05:00.000Z","id":"G1462788836-LAADS","original_format":"ECHO10","granule_size":"156.800319671631","browse_flag":true,"polygons":[["17.677284 + 76.50988 14.657718 98.294141 32.30788 104.111844 35.964239 78.920557 17.677284 + 76.50988"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0500.061.2017171212030.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0500.061.2017171212030.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0500.061.2017171212030.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0500.061.2017272142646.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0505.061.2017171212947.hdf","time_start":"2000-03-06T05:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081540","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T05:10:00.000Z","id":"G1462788719-LAADS","original_format":"ECHO10","granule_size":"149.029232978821","browse_flag":true,"polygons":[["-0.062634 + 73.091249 -3.074117 93.933352 14.770718 98.09661 17.95414 76.405125 -0.062634 + 73.091249"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0505.061.2017171212947.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0505.061.2017171212947.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0505.061.2017171212947.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0505.061.2017272143709.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0510.061.2017171212052.hdf","time_start":"2000-03-06T05:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081541","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T05:15:00.000Z","id":"G1462788716-LAADS","original_format":"ECHO10","granule_size":"154.748345375061","browse_flag":true,"polygons":[["-17.714259 + 68.55351 -21.048123 90.656204 -3.002943 93.960376 0.077074 73.061089 -17.714259 + 68.55351"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0510.061.2017171212052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0510.061.2017171212052.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0510.061.2017171212052.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0510.061.2017272144029.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0515.061.2017171212028.hdf","time_start":"2000-03-06T05:15:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081542","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T05:20:00.000Z","id":"G1462788715-LAADS","original_format":"ECHO10","granule_size":"155.89441204071","browse_flag":true,"polygons":[["-34.999345 + 61.978893 -39.075113 88.289138 -20.896052 90.949427 -17.623639 68.574975 -34.999345 + 61.978893"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0515.061.2017171212028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0515.061.2017171212028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0515.061.2017171212028.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0515.061.2017272144114.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0520.061.2017171212057.hdf","time_start":"2000-03-06T05:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081543","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T05:25:00.000Z","id":"G1462788721-LAADS","original_format":"ECHO10","granule_size":"169.965745925903","browse_flag":true,"polygons":[["-51.372662 + 50.903469 -57.01936 87.076532 -38.780665 88.791359 -34.922269 62.04242 -51.372662 + 50.903469"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0520.061.2017171212057.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0520.061.2017171212057.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0520.061.2017171212057.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0520.061.2017272144834.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0525.061.2017171214111.hdf","time_start":"2000-03-06T05:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083454","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T05:30:00.000Z","id":"G1462789079-LAADS","original_format":"ECHO10","granule_size":"157.168333053589","browse_flag":true,"polygons":[["-65.214181 + 27.9448 -74.793711 89.554049 -56.590078 87.71191 -51.355702 51.138344 -65.214181 + 27.9448"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0525.061.2017171214111.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0525.061.2017171214111.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0525.061.2017171214111.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0525.061.2017272144051.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0530.061.2017171214148.hdf","time_start":"2000-03-06T05:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083455","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T05:35:00.000Z","id":"G1462789083-LAADS","original_format":"ECHO10","granule_size":"133.644349098206","browse_flag":true,"polygons":[["-70.461386 + -19.49662 -86.156626 -145.518262 -74.235292 90.947078 -65.344054 28.462538 + -70.461386 -19.49662"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0530.061.2017171214148.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0530.061.2017171214148.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0530.061.2017171214148.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0530.061.2017272142543.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0535.061.2017171214340.hdf","time_start":"2000-03-06T05:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083128","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T05:40:00.000Z","id":"G1462789033-LAADS","original_format":"ECHO10","granule_size":"19.9186086654663","browse_flag":true,"polygons":[["-61.884544 + -60.34866 -69.234519 -112.626175 -86.236327 -155.150714 -70.818436 -19.40922 + -61.884544 -60.34866"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0535.061.2017171214340.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0535.061.2017171214340.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0535.061.2017171214340.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0535.061.2017272142029.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0620.061.2017171213047.hdf","time_start":"2000-03-06T06:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083129","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T06:25:00.000Z","id":"G1462789041-LAADS","original_format":"ECHO10","granule_size":"24.6511478424072","browse_flag":true,"polygons":[["84.589671 + 37.872059 70.382958 141.765239 66.828197 -167.481893 76.167221 -100.914859 + 84.589671 37.872059"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0620.061.2017171213047.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0620.061.2017171213047.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0620.061.2017171213047.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0620.061.2017272141954.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0625.061.2017171213128.hdf","time_start":"2000-03-06T06:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083130","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T06:30:00.000Z","id":"G1462789030-LAADS","original_format":"ECHO10","granule_size":"138.068106651306","browse_flag":true,"polygons":[["67.190001 + 55.826755 60.469072 103.759226 70.745853 141.717292 84.869007 31.597134 67.190001 + 55.826755"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0625.061.2017171213128.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0625.061.2017171213128.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0625.061.2017171213128.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0625.061.2017272143017.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0630.061.2017171212112.hdf","time_start":"2000-03-06T06:30:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081544","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T06:35:00.000Z","id":"G1462788717-LAADS","original_format":"ECHO10","granule_size":"160.64124584198","browse_flag":true,"polygons":[["49.409751 + 55.776193 45.162882 87.022329 60.786203 103.183799 67.680452 54.951589 49.409751 + 55.776193"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0630.061.2017171212112.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0630.061.2017171212112.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0630.061.2017171212112.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0630.061.2017272142751.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0635.061.2017171213113.hdf","time_start":"2000-03-06T06:35:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081831","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T06:40:00.000Z","id":"G1462788833-LAADS","original_format":"ECHO10","granule_size":"161.025651931763","browse_flag":true,"polygons":[["31.592397 + 53.900008 28.287592 78.208691 45.386758 86.529947 49.868406 55.468094 31.592397 + 53.900008"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0635.061.2017171213113.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0635.061.2017171213113.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0635.061.2017171213113.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0635.061.2017272143207.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0640.061.2017171212110.hdf","time_start":"2000-03-06T06:40:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081832","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T06:45:00.000Z","id":"G1462788838-LAADS","original_format":"ECHO10","granule_size":"134.739145278931","browse_flag":true,"polygons":[["13.794325 + 51.104235 10.800047 72.532556 28.445678 77.857169 31.962703 53.706403 13.794325 + 51.104235"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0640.061.2017171212110.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0640.061.2017171212110.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0640.061.2017171212110.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0640.061.2017272142323.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0645.061.2017171212122.hdf","time_start":"2000-03-06T06:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081545","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T06:50:00.000Z","id":"G1462788720-LAADS","original_format":"ECHO10","granule_size":"144.190728187561","browse_flag":true,"polygons":[["-4.005472 + 47.475753 -7.056881 68.388946 10.909966 72.339569 14.042658 51.024142 -4.005472 + 47.475753"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0645.061.2017171212122.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0645.061.2017171212122.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0645.061.2017171212122.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0645.061.2017272143020.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0650.061.2017171212050.hdf","time_start":"2000-03-06T06:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081546","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T06:55:00.000Z","id":"G1462788722-LAADS","original_format":"ECHO10","granule_size":"156.72533416748","browse_flag":true,"polygons":[["-21.620029 + 42.591071 -25.076608 65.334432 -6.994367 68.490571 -3.897228 47.456596 -21.620029 + 42.591071"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0650.061.2017171212050.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0650.061.2017171212050.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0650.061.2017171212050.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0650.061.2017272143839.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0655.061.2017171212106.hdf","time_start":"2000-03-06T06:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081547","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T07:00:00.000Z","id":"G1462788724-LAADS","original_format":"ECHO10","granule_size":"147.805696487427","browse_flag":true,"polygons":[["-38.760639 + 35.310293 -43.091195 63.169019 -24.893028 65.671973 -21.530122 42.61507 -38.760639 + 35.310293"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0655.061.2017171212106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0655.061.2017171212106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0655.061.2017171212106.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0655.061.2017272143641.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0700.061.2017171212115.hdf","time_start":"2000-03-06T07:00:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081833","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T07:05:00.000Z","id":"G1462788842-LAADS","original_format":"ECHO10","granule_size":"163.571031570435","browse_flag":true,"polygons":[["-54.789741 + 22.536253 -61.006766 62.383675 -42.76488 63.722092 -38.692753 35.404493 -54.789741 + 22.536253"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0700.061.2017171212115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0700.061.2017171212115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0700.061.2017171212115.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0700.061.2017272145223.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0705.061.2017171213147.hdf","time_start":"2000-03-06T07:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083131","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T07:10:00.000Z","id":"G1462789038-LAADS","original_format":"ECHO10","granule_size":"151.049140930176","browse_flag":true,"polygons":[["-67.487774 + -5.136451 -78.698487 67.683671 -60.550116 63.088175 -54.795861 22.827422 -67.487774 + -5.136451"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0705.061.2017171213147.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0705.061.2017171213147.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0705.061.2017171213147.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0705.061.2017272143822.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0710.061.2017171213109.hdf","time_start":"2000-03-06T07:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083132","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T07:15:00.000Z","id":"G1462789034-LAADS","original_format":"ECHO10","granule_size":"110.430068016052","browse_flag":true,"polygons":[["-69.569189 + -55.776486 -82.714973 -149.254904 -78.101312 69.380476 -67.671587 -4.590108 + -69.569189 -55.776486"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0710.061.2017171213109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0710.061.2017171213109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0710.061.2017171213109.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0710.061.2017272142052.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0800.061.2017171213130.hdf","time_start":"2000-03-06T08:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083133","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T08:05:00.000Z","id":"G1462789031-LAADS","original_format":"ECHO10","granule_size":"46.4833364486694","browse_flag":true,"polygons":[["80.847446 + 23.866593 69.083922 105.902785 68.941238 158.537903 80.038481 -121.549809 + 80.847446 23.866593"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0800.061.2017171213130.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0800.061.2017171213130.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0800.061.2017171213130.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0800.061.2017272142050.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0805.061.2017171213146.hdf","time_start":"2000-03-06T08:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083134","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T08:10:00.000Z","id":"G1462789032-LAADS","original_format":"ECHO10","granule_size":"148.985347747803","browse_flag":true,"polygons":[["63.222484 + 31.421437 57.298483 74.090392 69.45959 105.630526 81.258151 20.766603 63.222484 + 31.421437"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0805.061.2017171213146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0805.061.2017171213146.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0805.061.2017171213146.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0805.061.2017272143524.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0810.061.2017171212748.hdf","time_start":"2000-03-06T08:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081834","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T08:15:00.000Z","id":"G1462788835-LAADS","original_format":"ECHO10","granule_size":"160.025625228882","browse_flag":true,"polygons":[["45.430392 + 30.722013 41.472972 59.911167 57.584814 73.53769 63.712493 30.722565 45.430392 + 30.722013"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0810.061.2017171212748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0810.061.2017171212748.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0810.061.2017171212748.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0810.061.2017272143920.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0815.061.2017171212151.hdf","time_start":"2000-03-06T08:15:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081548","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T08:20:00.000Z","id":"G1462788725-LAADS","original_format":"ECHO10","granule_size":"160.458471298218","browse_flag":true,"polygons":[["27.612337 + 28.601933 24.415797 52.034076 41.680861 59.446609 45.873019 30.439173 27.612337 + 28.601933"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0815.061.2017171212151.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0815.061.2017171212151.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0815.061.2017171212151.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0815.061.2017272143037.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0820.061.2017171212128.hdf","time_start":"2000-03-06T08:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081549","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T08:25:00.000Z","id":"G1462788727-LAADS","original_format":"ECHO10","granule_size":"155.265407562256","browse_flag":true,"polygons":[["9.822908 + 25.666446 6.84648 46.789354 24.562165 51.715554 27.958806 28.469855 9.822908 + 25.666446"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0820.061.2017171212128.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0820.061.2017171212128.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0820.061.2017171212128.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0820.061.2017272142059.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0825.061.2017171212106.hdf","time_start":"2000-03-06T08:25:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081550","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T08:30:00.000Z","id":"G1462788731-LAADS","original_format":"ECHO10","granule_size":"161.501153945923","browse_flag":true,"polygons":[["-7.874839 + 21.835422 -10.979336 42.896656 6.949105 46.624079 10.041293 25.611832 -7.874839 + 21.835422"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0825.061.2017171212106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0825.061.2017171212106.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0825.061.2017171212106.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0825.061.2017272142808.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0830.061.2017171212145.hdf","time_start":"2000-03-06T08:30:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081835","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T08:35:00.000Z","id":"G1462788837-LAADS","original_format":"ECHO10","granule_size":"167.234137535095","browse_flag":true,"polygons":[["-25.513426 + 16.551093 -29.108031 40.04995 -10.90356 43.08413 -7.782698 21.842554 -25.513426 + 16.551093"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0830.061.2017171212145.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0830.061.2017171212145.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0830.061.2017171212145.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0830.061.2017272143455.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0835.061.2017171212109.hdf","time_start":"2000-03-06T08:35:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081551","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T08:40:00.000Z","id":"G1462788723-LAADS","original_format":"ECHO10","granule_size":"163.677118301392","browse_flag":true,"polygons":[["-42.485452 + 8.426233 -47.10796 38.104789 -28.890976 40.431745 -25.427422 16.574506 -42.485452 + 8.426233"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0835.061.2017171212109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0835.061.2017171212109.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0835.061.2017171212109.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0835.061.2017272144103.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0840.061.2017171212127.hdf","time_start":"2000-03-06T08:40:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081836","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T08:45:00.000Z","id":"G1462788848-LAADS","original_format":"ECHO10","granule_size":"166.516416549683","browse_flag":true,"polygons":[["-58.066703 + -6.52055 -64.988576 37.892949 -46.747695 38.712642 -42.418269 8.520011 -58.066703 + -6.52055"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0840.061.2017171212127.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0840.061.2017171212127.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0840.061.2017171212127.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0840.061.2017272145133.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0845.061.2017171213138.hdf","time_start":"2000-03-06T08:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083135","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T08:50:00.000Z","id":"G1462789046-LAADS","original_format":"ECHO10","granule_size":"155.015294075012","browse_flag":true,"polygons":[["-69.234967 + -39.782351 -82.52455 49.284053 -64.506136 38.654503 -58.101365 -6.166014 -69.234967 + -39.782351"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0845.061.2017171213138.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0845.061.2017171213138.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0845.061.2017171213138.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0845.061.2017272143721.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0850.061.2017171213852.hdf","time_start":"2000-03-06T08:50:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083456","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T08:55:00.000Z","id":"G1462789082-LAADS","original_format":"ECHO10","granule_size":"81.0613880157471","browse_flag":true,"polygons":[["-67.976509 + -90.796777 -78.919486 -167.089729 -81.882818 51.142008 -69.477015 -39.264015 + -67.976509 -90.796777"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0850.061.2017171213852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0850.061.2017171213852.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0850.061.2017171213852.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0850.061.2017272142138.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0940.061.2017171212129.hdf","time_start":"2000-03-06T09:40:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081837","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T09:45:00.000Z","id":"G1462788851-LAADS","original_format":"ECHO10","granule_size":"76.7381525039673","browse_flag":true,"polygons":[["76.956505 + 3.221076 67.140701 71.575354 70.443775 122.890947 83.762657 -136.455833 76.956505 + 3.221076"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0940.061.2017171212129.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0940.061.2017171212129.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0940.061.2017171212129.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0940.061.2017272142316.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0945.061.2017171212212.hdf","time_start":"2000-03-06T09:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081838","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T09:50:00.000Z","id":"G1462788846-LAADS","original_format":"ECHO10","granule_size":"154.801362991333","browse_flag":true,"polygons":[["59.250995 + 6.793786 53.941636 45.276986 67.497133 71.164948 77.416284 1.36727 59.250995 + 6.793786"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0945.061.2017171212212.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0945.061.2017171212212.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0945.061.2017171212212.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0945.061.2017272144306.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0950.061.2017171212153.hdf","time_start":"2000-03-06T09:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081552","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T09:55:00.000Z","id":"G1462788726-LAADS","original_format":"ECHO10","granule_size":"164.89217376709","browse_flag":true,"polygons":[["41.448871 + 5.610606 37.728786 33.074738 54.214873 44.715375 59.733763 6.209908 41.448871 + 5.610606"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0950.061.2017171212153.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0950.061.2017171212153.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0950.061.2017171212153.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0950.061.2017272144025.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.0955.061.2017171212203.hdf","time_start":"2000-03-06T09:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081839","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T10:00:00.000Z","id":"G1462788847-LAADS","original_format":"ECHO10","granule_size":"152.093048095703","browse_flag":true,"polygons":[["23.628389 + 3.300522 20.52344 25.956433 37.926448 32.621364 41.874103 5.384281 23.628389 + 3.300522"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0955.061.2017171212203.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.0955.061.2017171212203.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.0955.061.2017171212203.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.0955.061.2017272142714.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1000.061.2017171212115.hdf","time_start":"2000-03-06T10:00:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081840","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T10:05:00.000Z","id":"G1462788839-LAADS","original_format":"ECHO10","granule_size":"155.01307964325","browse_flag":true,"polygons":[["5.857626 + 0.167365 2.881521 21.089611 20.657548 25.675516 23.952229 3.170745 5.857626 + 0.167365"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1000.061.2017171212115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1000.061.2017171212115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1000.061.2017171212115.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1000.061.2017272142141.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1005.061.2017171212101.hdf","time_start":"2000-03-06T10:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081841","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T10:10:00.000Z","id":"G1462788841-LAADS","original_format":"ECHO10","granule_size":"160.472096443176","browse_flag":true,"polygons":[["-11.825788 + -3.927368 -15.007411 17.440144 2.972611 20.987745 6.047579 0.119094 -11.825788 + -3.927368"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1005.061.2017171212101.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1005.061.2017171212101.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1005.061.2017171212101.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1005.061.2017272144428.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1010.061.2017171212322.hdf","time_start":"2000-03-06T10:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081842","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T10:15:00.000Z","id":"G1462788840-LAADS","original_format":"ECHO10","granule_size":"157.27077960968","browse_flag":true,"polygons":[["-29.283791 + -9.651205 -33.046094 14.817019 -14.905493 17.69481 -11.730066 -3.913293 -29.283791 + -9.651205"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1010.061.2017171212322.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1010.061.2017171212322.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1010.061.2017171212322.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1010.061.2017272144104.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1015.061.2017171212127.hdf","time_start":"2000-03-06T10:15:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081843","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T10:20:00.000Z","id":"G1462788843-LAADS","original_format":"ECHO10","granule_size":"169.425446510315","browse_flag":true,"polygons":[["-46.130538 + -18.834116 -51.118354 13.115183 -32.80241 15.251178 -29.19712 -9.618798 -46.130538 + -18.834116"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1015.061.2017171212127.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1015.061.2017171212127.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1015.061.2017171212127.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1015.061.2017272145338.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1020.061.2017171213547.hdf","time_start":"2000-03-06T10:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083457","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T10:25:00.000Z","id":"G1462789093-LAADS","original_format":"ECHO10","granule_size":"165.10680770874","browse_flag":true,"polygons":[["-61.155423 + -36.454029 -68.961795 13.723167 -50.729016 13.781515 -46.087501 -18.668831 + -61.155423 -36.454029"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1020.061.2017171213547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1020.061.2017171213547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1020.061.2017171213547.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1020.061.2017272145334.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1025.061.2017171213731.hdf","time_start":"2000-03-06T10:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083136","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T10:30:00.000Z","id":"G1462789040-LAADS","original_format":"ECHO10","granule_size":"150.601898193359","browse_flag":true,"polygons":[["-70.312578 + -75.818264 -86.019926 44.158299 -68.453748 14.586941 -61.224644 -36.03486 + -70.312578 -75.818264"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1025.061.2017171213731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1025.061.2017171213731.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1025.061.2017171213731.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1025.061.2017272143357.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1030.061.2017171213117.hdf","time_start":"2000-03-06T10:30:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083137","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T10:35:00.000Z","id":"G1462789037-LAADS","original_format":"ECHO10","granule_size":"52.9115505218506","browse_flag":true,"polygons":[["-65.816518 + -124.272697 -75.027519 171.234177 -85.34051 44.156806 -70.610488 -75.416955 + -65.816518 -124.272697"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1030.061.2017171213117.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1030.061.2017171213117.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1030.061.2017171213117.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1030.061.2017272142154.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1120.061.2017171212113.hdf","time_start":"2000-03-06T11:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081553","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T11:25:00.000Z","id":"G1462788728-LAADS","original_format":"ECHO10","granule_size":"109.656394004822","browse_flag":true,"polygons":[["73.020373 + -19.578064 64.700694 38.854749 71.188221 85.962567 86.776783 -127.888168 73.020373 + -19.578064"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1120.061.2017171212113.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1120.061.2017171212113.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1120.061.2017171212113.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1120.061.2017272143147.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1125.061.2017171213051.hdf","time_start":"2000-03-06T11:25:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081844","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T11:30:00.000Z","id":"G1462788844-LAADS","original_format":"ECHO10","granule_size":"160.587327003479","browse_flag":true,"polygons":[["55.273098 + -18.04981 50.46 17.090978 65.040699 38.353062 73.498496 -20.912612 55.273098 + -18.04981"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1125.061.2017171213051.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1125.061.2017171213051.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1125.061.2017171213051.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1125.061.2017272145018.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1130.061.2017171213101.hdf","time_start":"2000-03-06T11:30:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082175","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T11:35:00.000Z","id":"G1462788865-LAADS","original_format":"ECHO10","granule_size":"154.158255577087","browse_flag":true,"polygons":[["37.462332 + -19.554312 33.938255 6.468775 50.71594 16.541234 55.750588 -18.501489 37.462332 + -19.554312"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1130.061.2017171213101.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1130.061.2017171213101.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1130.061.2017171213101.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1130.061.2017272143847.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1135.061.2017171212530.hdf","time_start":"2000-03-06T11:35:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081845","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T11:40:00.000Z","id":"G1462788852-LAADS","original_format":"ECHO10","granule_size":"158.509143829346","browse_flag":true,"polygons":[["19.649984 + -22.060522 16.600367 0.024897 34.113907 6.077553 37.867802 -19.75844 19.649984 + -22.060522"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1135.061.2017171212530.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1135.061.2017171212530.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1135.061.2017171212530.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1135.061.2017272143552.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1140.061.2017171212129.hdf","time_start":"2000-03-06T11:40:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081846","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T11:45:00.000Z","id":"G1462788849-LAADS","original_format":"ECHO10","granule_size":"143.705154418945","browse_flag":true,"polygons":[["1.897215 + -25.369381 -1.09745 -4.527653 16.726934 -0.233699 19.943814 -22.159734 1.897215 + -25.369381"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1140.061.2017171212129.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1140.061.2017171212129.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1140.061.2017171212129.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1140.061.2017272143449.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1145.061.2017171212142.hdf","time_start":"2000-03-06T11:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081847","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T11:50:00.000Z","id":"G1462788845-LAADS","original_format":"ECHO10","granule_size":"142.952940940857","browse_flag":true,"polygons":[["-15.765823 + -29.751782 -19.045747 -7.918623 -1.021045 -4.53647 2.054832 -25.405236 -15.765823 + -29.751782"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1145.061.2017171212142.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1145.061.2017171212142.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1145.061.2017171212142.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1145.061.2017272143117.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1150.061.2017171213115.hdf","time_start":"2000-03-06T11:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082176","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T11:55:00.000Z","id":"G1462788866-LAADS","original_format":"ECHO10","granule_size":"147.792019844055","browse_flag":true,"polygons":[["-33.114243 + -36.019539 -37.078105 -10.384328 -18.909527 -7.64859 -15.674975 -29.731219 + -33.114243 -36.019539"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1150.061.2017171213115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1150.061.2017171213115.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1150.061.2017171213115.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1150.061.2017272143359.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1155.061.2017171212156.hdf","time_start":"2000-03-06T11:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081848","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T12:00:00.000Z","id":"G1462788850-LAADS","original_format":"ECHO10","granule_size":"162.059156417847","browse_flag":true,"polygons":[["-49.632065 + -46.38184 -55.035909 -11.776787 -36.799729 -9.906999 -33.033303 -35.968733 + -49.632065 -46.38184"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1155.061.2017171212156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1155.061.2017171212156.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1155.061.2017171212156.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1155.061.2017272144609.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1200.061.2017171213136.hdf","time_start":"2000-03-06T12:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083458","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T12:05:00.000Z","id":"G1462789102-LAADS","original_format":"ECHO10","granule_size":"161.964720726013","browse_flag":true,"polygons":[["-63.988423 + -67.494313 -72.923889 -9.955682 -54.619309 -11.060503 -49.605669 -46.170664 + -63.988423 -67.494313"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1200.061.2017171213136.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1200.061.2017171213136.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1200.061.2017171213136.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1200.061.2017272144933.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1205.061.2017171214041.hdf","time_start":"2000-03-06T12:05:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083459","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T12:10:00.000Z","id":"G1462789089-LAADS","original_format":"ECHO10","granule_size":"141.524794578552","browse_flag":true,"polygons":[["-70.608563 + -112.645529 -87.263058 88.787145 -72.387854 -8.951137 -64.099398 -67.010581 + -70.608563 -112.645529"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1205.061.2017171214041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1205.061.2017171214041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1205.061.2017171214041.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1205.061.2017272143220.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1210.061.2017171213715.hdf","time_start":"2000-03-06T12:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083460","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T12:15:00.000Z","id":"G1462789084-LAADS","original_format":"ECHO10","granule_size":"29.027774810791","browse_flag":true,"polygons":[["-63.226377 + -156.263574 -71.105547 148.181908 -87.024859 76.699206 -70.95182 -112.442468 + -63.226377 -156.263574"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1210.061.2017171213715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1210.061.2017171213715.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1210.061.2017171213715.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1210.061.2017272142310.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1300.061.2017171213149.hdf","time_start":"2000-03-06T13:00:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083138","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T13:05:00.000Z","id":"G1462789047-LAADS","original_format":"ECHO10","granule_size":"141.540803909302","browse_flag":true,"polygons":[["69.068165 + -43.190476 61.891762 7.561749 71.085116 48.624996 86.33605 -82.693358 69.068165 + -43.190476"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1300.061.2017171213149.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1300.061.2017171213149.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1300.061.2017171213149.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1300.061.2017272143404.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1305.061.2017171212135.hdf","time_start":"2000-03-06T13:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081849","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T13:10:00.000Z","id":"G1462788864-LAADS","original_format":"ECHO10","granule_size":"160.349859237671","browse_flag":true,"polygons":[["51.294519 + -42.978079 46.882254 -10.609317 62.220843 6.991268 69.546636 -44.314349 51.294519 + -42.978079"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1305.061.2017171212135.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1305.061.2017171212135.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1305.061.2017171212135.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1305.061.2017272144849.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1310.061.2017171212237.hdf","time_start":"2000-03-06T13:10:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081850","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T13:15:00.000Z","id":"G1462788855-LAADS","original_format":"ECHO10","granule_size":"156.73655128479","browse_flag":true,"polygons":[["33.475713 + -44.765472 30.10524 -19.932058 47.112416 -11.107045 51.756224 -43.352145 33.475713 + -44.765472"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1310.061.2017171212237.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1310.061.2017171212237.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1310.061.2017171212237.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1310.061.2017272144955.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1315.061.2017171212214.hdf","time_start":"2000-03-06T13:15:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081851","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T13:20:00.000Z","id":"G1462788862-LAADS","original_format":"ECHO10","granule_size":"146.666663169861","browse_flag":true,"polygons":[["15.668615 + -47.447834 12.662619 -25.839679 30.270252 -20.301073 33.858436 -44.938333 + 15.668615 -47.447834"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1315.061.2017171212214.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1315.061.2017171212214.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1315.061.2017171212214.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1315.061.2017272144242.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1320.061.2017171212141.hdf","time_start":"2000-03-06T13:20:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081554","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T13:25:00.000Z","id":"G1462788732-LAADS","original_format":"ECHO10","granule_size":"165.493206977844","browse_flag":true,"polygons":[["-2.057704 + -50.9559 -5.086274 -30.097948 12.778266 -26.057546 15.93337 -47.529934 -2.057704 + -50.9559"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1320.061.2017171212141.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1320.061.2017171212141.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1320.061.2017171212141.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1320.061.2017272144835.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1325.061.2017171212914.hdf","time_start":"2000-03-06T13:25:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082177","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T13:30:00.000Z","id":"G1462788870-LAADS","original_format":"ECHO10","granule_size":"164.32984828949","browse_flag":true,"polygons":[["-19.692986 + -55.660972 -23.08464 -33.264579 -5.019264 -30.03519 -1.933806 -50.977701 -19.692986 + -55.660972"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1325.061.2017171212914.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1325.061.2017171212914.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1325.061.2017171212914.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1325.061.2017272143614.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1330.061.2017171212726.hdf","time_start":"2000-03-06T13:30:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081852","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T13:35:00.000Z","id":"G1462788860-LAADS","original_format":"ECHO10","granule_size":"158.449049949646","browse_flag":true,"polygons":[["-36.909767 + -62.57771 -41.107421 -35.533827 -22.917024 -32.949299 -19.603226 -55.638598 + -36.909767 -62.57771"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1330.061.2017171212726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1330.061.2017171212726.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1330.061.2017171212726.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1330.061.2017272144329.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1335.061.2017171213155.hdf","time_start":"2000-03-06T13:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083139","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T13:40:00.000Z","id":"G1462789035-LAADS","original_format":"ECHO10","granule_size":"146.338137626648","browse_flag":true,"polygons":[["-53.120841 + -74.466089 -59.039848 -36.548637 -40.797324 -35.005739 -36.837453 -62.499565 + -53.120841 -74.466089"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1335.061.2017171213155.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1335.061.2017171213155.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1335.061.2017171213155.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1335.061.2017272144249.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1340.061.2017171214125.hdf","time_start":"2000-03-06T13:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083461","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T13:45:00.000Z","id":"G1462789086-LAADS","original_format":"ECHO10","granule_size":"159.651713371277","browse_flag":true,"polygons":[["-66.426461 + -99.699256 -76.76859 -32.595471 -58.593594 -35.748842 -53.114636 -74.204745 + -66.426461 -99.699256"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1340.061.2017171214125.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1340.061.2017171214125.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1340.061.2017171214125.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1340.061.2017272144941.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1345.061.2017171214339.hdf","time_start":"2000-03-06T13:45:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083462","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T13:50:00.000Z","id":"G1462789087-LAADS","original_format":"ECHO10","granule_size":"122.360023498535","browse_flag":true,"polygons":[["-70.084817 + -149.34131 -84.442847 105.826708 -76.209847 -31.521548 -66.584752 -99.179616 + -70.084817 -149.34131"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1345.061.2017171214339.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1345.061.2017171214339.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1345.061.2017171214339.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1345.061.2017272142607.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1435.061.2017171214104.hdf","time_start":"2000-03-06T14:35:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083463","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T14:40:00.000Z","id":"G1462789096-LAADS","original_format":"ECHO10","granule_size":"38.5826711654663","browse_flag":true,"polygons":[["82.729089 + -78.866676 69.816601 12.349243 67.964719 64.442109 78.134687 137.167018 82.729089 + -78.866676"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1435.061.2017171214104.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1435.061.2017171214104.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1435.061.2017171214104.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1435.061.2017272142319.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1440.061.2017171213200.hdf","time_start":"2000-03-06T14:40:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083140","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T14:45:00.000Z","id":"G1462789039-LAADS","original_format":"ECHO10","granule_size":"147.203434944153","browse_flag":true,"polygons":[["65.098335 + -67.579314 58.817684 -22.567378 70.179877 12.187195 83.094139 -83.133126 65.098335 + -67.579314"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1440.061.2017171213200.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1440.061.2017171213200.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1440.061.2017171213200.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1440.061.2017272143324.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1445.061.2017171212229.hdf","time_start":"2000-03-06T14:45:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081853","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T14:50:00.000Z","id":"G1462788856-LAADS","original_format":"ECHO10","granule_size":"164.231031417847","browse_flag":true,"polygons":[["47.309722 + -67.983467 43.221094 -37.880216 59.118275 -23.132917 65.588426 -68.325484 + 47.309722 -67.983467"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1445.061.2017171212229.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1445.061.2017171212229.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1445.061.2017171212229.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1445.061.2017272144943.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1450.061.2017171212238.hdf","time_start":"2000-03-06T14:50:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081555","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T14:55:00.000Z","id":"G1462788729-LAADS","original_format":"ECHO10","granule_size":"166.011681556702","browse_flag":true,"polygons":[["29.492168 + -70.019849 26.246146 -46.181629 43.438094 -38.363067 47.758995 -68.308798 + 29.492168 -70.019849"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1450.061.2017171212238.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1450.061.2017171212238.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1450.061.2017171212238.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1450.061.2017272145052.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1455.061.2017171212951.hdf","time_start":"2000-03-06T14:55:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715082178","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T15:00:00.000Z","id":"G1462788873-LAADS","original_format":"ECHO10","granule_size":"144.906003952026","browse_flag":true,"polygons":[["11.693461 + -72.874562 8.712812 -51.621919 26.398471 -46.516199 29.84955 -70.165721 11.693461 + -72.874562"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1455.061.2017171212951.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1455.061.2017171212951.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1455.061.2017171212951.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1455.061.2017272143816.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1500.061.2017171212233.hdf","time_start":"2000-03-06T15:00:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081854","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T15:05:00.000Z","id":"G1462788853-LAADS","original_format":"ECHO10","granule_size":"165.61431312561","browse_flag":true,"polygons":[["-6.006868 + -76.595439 -9.083134 -55.623451 8.819513 -51.803995 11.928168 -72.937596 -6.006868 + -76.595439"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1500.061.2017171212233.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1500.061.2017171212233.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1500.061.2017171212233.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1500.061.2017272144055.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1505.061.2017171212203.hdf","time_start":"2000-03-06T15:05:00.000Z","updated":"2022-11-22T11:55:02.560Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715081855","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T15:10:00.000Z","id":"G1462788854-LAADS","original_format":"ECHO10","granule_size":"166.153108596802","browse_flag":true,"polygons":[["-23.594196 + -81.67899 -27.119541 -58.567989 -9.018222 -55.483395 -5.909688 -76.613504 + -23.594196 -81.67899"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1505.061.2017171212203.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1505.061.2017171212203.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1505.061.2017171212203.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1505.061.2017272144326.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1510.061.2017171213145.hdf","time_start":"2000-03-06T15:10:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083464","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T15:15:00.000Z","id":"G1462789088-LAADS","original_format":"ECHO10","granule_size":"159.709740638733","browse_flag":true,"polygons":[["-40.653391 + -89.368991 -45.127554 -60.623799 -26.919689 -58.206223 -23.504943 -81.653706 + -40.653391 -89.368991"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1510.061.2017171213145.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1510.061.2017171213145.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1510.061.2017171213145.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1510.061.2017272143738.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1515.061.2017171213149.hdf","time_start":"2000-03-06T15:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083465","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T15:20:00.000Z","id":"G1462789090-LAADS","original_format":"ECHO10","granule_size":"165.230465888977","browse_flag":true,"polygons":[["-56.476001 + -103.166529 -63.028839 -61.144688 -44.785791 -60.044453 -40.591008 -89.259478 + -56.476001 -103.166529"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1515.061.2017171213149.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1515.061.2017171213149.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1515.061.2017171213149.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1515.061.2017272144954.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1520.061.2017171213214.hdf","time_start":"2000-03-06T15:20:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083466","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T15:25:00.000Z","id":"G1462789091-LAADS","original_format":"ECHO10","granule_size":"155.368146896362","browse_flag":true,"polygons":[["-68.45337 + -133.584173 -80.641857 -53.025724 -62.555129 -60.26164 -56.495328 -102.845364 + -68.45337 -133.584173"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1520.061.2017171213214.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1520.061.2017171213214.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1520.061.2017171213214.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1520.061.2017272144517.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1525.061.2017171213148.hdf","time_start":"2000-03-06T15:25:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083141","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T15:30:00.000Z","id":"G1462789043-LAADS","original_format":"ECHO10","granule_size":"94.3432559967041","browse_flag":true,"polygons":[["-68.841787 + 175.199754 -80.821274 91.858989 -80.05978 -52.009082 -68.667718 -133.060905 + -68.841787 175.199754"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1525.061.2017171213148.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1525.061.2017171213148.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1525.061.2017171213148.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1525.061.2017272142414.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1615.061.2017171213147.hdf","time_start":"2000-03-06T16:15:00.000Z","updated":"2022-11-22T11:55:07.950Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715083467","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T16:20:00.000Z","id":"G1462789103-LAADS","original_format":"ECHO10","granule_size":"62.9800872802734","browse_flag":true,"polygons":[["78.890393 + -97.3008 68.172957 -22.758813 69.785637 29.60647 81.949018 118.633804 78.890393 + -97.3008"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1615.061.2017171213147.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1615.061.2017171213147.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1615.061.2017171213147.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1615.061.2017272142614.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1620.061.2017171214135.hdf","time_start":"2000-03-06T16:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084120","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T16:25:00.000Z","id":"G1462789201-LAADS","original_format":"ECHO10","granule_size":"151.234343528748","browse_flag":true,"polygons":[["61.218124 + -92.143366 55.619529 -51.663696 68.535995 -23.102728 79.328551 -99.697645 + 61.218124 -92.143366"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1620.061.2017171214135.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1620.061.2017171214135.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1620.061.2017171214135.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1620.061.2017272143538.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1625.061.2017171214053.hdf","time_start":"2000-03-06T16:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084121","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T16:30:00.000Z","id":"G1462789216-LAADS","original_format":"ECHO10","granule_size":"162.306889533997","browse_flag":true,"polygons":[["43.33027 + -93.073922 39.506128 -64.838808 55.901663 -52.229485 61.706446 -92.747326 + 43.33027 -93.073922"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1625.061.2017171214053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1625.061.2017171214053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1625.061.2017171214053.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1625.061.2017272143940.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1630.061.2017171214026.hdf","time_start":"2000-03-06T16:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084122","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T16:35:00.000Z","id":"G1462789200-LAADS","original_format":"ECHO10","granule_size":"146.537245750427","browse_flag":true,"polygons":[["25.514553 + -95.314 22.36587 -72.290989 39.706972 -65.289764 43.765006 -93.346902 25.514553 + -95.314"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1630.061.2017171214026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1630.061.2017171214026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1630.061.2017171214026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1630.061.2017272143110.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1635.061.2017171214017.hdf","time_start":"2000-03-06T16:35:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084123","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T16:40:00.000Z","id":"G1462789203-LAADS","original_format":"ECHO10","granule_size":"155.864157676697","browse_flag":true,"polygons":[["7.731577 + -98.344869 4.757224 -77.332876 22.506528 -72.593363 25.847096 -95.437648 7.731577 + -98.344869"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1635.061.2017171214017.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1635.061.2017171214017.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1635.061.2017171214017.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1635.061.2017272144227.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1640.061.2017171214035.hdf","time_start":"2000-03-06T16:40:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084124","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T16:45:00.000Z","id":"G1462789205-LAADS","original_format":"ECHO10","granule_size":"165.916947364807","browse_flag":true,"polygons":[["-9.959773 + -102.315109 -13.104128 -81.092309 4.853252 -77.463227 7.935763 -98.400276 + -9.959773 -102.315109"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1640.061.2017171214035.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1640.061.2017171214035.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1640.061.2017171214035.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1640.061.2017272144611.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1645.061.2017171214028.hdf","time_start":"2000-03-06T16:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084125","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T16:50:00.000Z","id":"G1462789213-LAADS","original_format":"ECHO10","granule_size":"149.184157371521","browse_flag":true,"polygons":[["-27.464416 + -107.813097 -31.144097 -83.82806 -13.012695 -80.884309 -9.865793 -102.308643 + -27.464416 -107.813097"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1645.061.2017171214028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1645.061.2017171214028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1645.061.2017171214028.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1645.061.2017272144307.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1650.061.2017171220439.hdf","time_start":"2000-03-06T16:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085448","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T16:55:00.000Z","id":"G1462789349-LAADS","original_format":"ECHO10","granule_size":"141.738327980042","browse_flag":true,"polygons":[["-44.334778 + -116.432361 -49.134527 -85.647297 -30.912653 -83.421868 -27.37665 -107.784746 + -44.334778 -116.432361"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1650.061.2017171220439.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1650.061.2017171220439.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1650.061.2017171220439.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1650.061.2017272144043.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1655.061.2017171215011.hdf","time_start":"2000-03-06T16:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085156","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T17:00:00.000Z","id":"G1462789250-LAADS","original_format":"ECHO10","granule_size":"159.012359619141","browse_flag":true,"polygons":[["-59.661277 + -132.632014 -67.000718 -85.48216 -48.762221 -85.010095 -44.285326 -116.285023 + -59.661277 -132.632014"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1655.061.2017171215011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1655.061.2017171215011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1655.061.2017171215011.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1655.061.2017272144920.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1700.061.2017171215020.hdf","time_start":"2000-03-06T17:00:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085449","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T17:05:00.000Z","id":"G1462789353-LAADS","original_format":"ECHO10","granule_size":"152.12429523468","browse_flag":true,"polygons":[["-69.877996 + -168.96715 -84.353529 -67.055075 -66.501486 -84.548101 -59.71219 -132.246833 + -69.877996 -168.96715"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1700.061.2017171215020.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1700.061.2017171215020.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1700.061.2017171215020.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1700.061.2017272144010.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1705.061.2017171214955.hdf","time_start":"2000-03-06T17:05:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085450","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T17:10:00.000Z","id":"G1462789346-LAADS","original_format":"ECHO10","granule_size":"68.1853132247925","browse_flag":true,"polygons":[["-66.948157 + 140.966362 -76.962472 71.362815 -83.734519 -66.437479 -70.148377 -168.511067 + -66.948157 140.966362"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1705.061.2017171214955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1705.061.2017171214955.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1705.061.2017171214955.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1705.061.2017272142315.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1755.061.2017171214951.hdf","time_start":"2000-03-06T17:55:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085451","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T18:00:00.000Z","id":"G1462789345-LAADS","original_format":"ECHO10","granule_size":"90.9699563980103","browse_flag":true,"polygons":[["74.979486 + -119.280719 65.964463 -56.243774 70.917968 -6.746091 85.459136 111.203589 + 74.979486 -119.280719"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1755.061.2017171214951.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1755.061.2017171214951.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1755.061.2017171214951.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1755.061.2017272142634.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1800.061.2017171215006.hdf","time_start":"2000-03-06T18:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085157","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T18:05:00.000Z","id":"G1462789242-LAADS","original_format":"ECHO10","granule_size":"153.183605194092","browse_flag":true,"polygons":[["57.250881 + -116.869481 52.204726 -80.141513 66.315138 -56.709866 75.450482 -120.830972 + 57.250881 -116.869481"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1800.061.2017171215006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1800.061.2017171215006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1800.061.2017171215006.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1800.061.2017272143939.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1805.061.2017171214034.hdf","time_start":"2000-03-06T18:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084126","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T18:10:00.000Z","id":"G1462789204-LAADS","original_format":"ECHO10","granule_size":"161.628535270691","browse_flag":true,"polygons":[["39.444634 + -118.181189 35.826499 -91.497334 52.467069 -80.690157 57.732246 -117.326891 + 39.444634 -118.181189"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1805.061.2017171214034.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1805.061.2017171214034.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1805.061.2017171214034.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1805.061.2017272143534.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1810.061.2017171214036.hdf","time_start":"2000-03-06T18:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084127","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T18:15:00.000Z","id":"G1462789207-LAADS","original_format":"ECHO10","granule_size":"166.983242034912","browse_flag":true,"polygons":[["21.544009 + -120.644945 18.466656 -98.291459 36.01379 -91.92186 39.855982 -118.44544 21.544009 + -120.644945"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1810.061.2017171214036.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1810.061.2017171214036.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1810.061.2017171214036.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1810.061.2017272144033.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1815.061.2017171215011.hdf","time_start":"2000-03-06T18:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085452","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T18:20:00.000Z","id":"G1462789350-LAADS","original_format":"ECHO10","granule_size":"156.060607910156","browse_flag":true,"polygons":[["3.775396 + -123.858702 0.79653 -103.007065 18.600356 -98.581015 21.850374 -120.747775 + 3.775396 -123.858702"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1815.061.2017171215011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1815.061.2017171215011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1815.061.2017171215011.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1815.061.2017272144331.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1820.061.2017171215033.hdf","time_start":"2000-03-06T18:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085158","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T18:25:00.000Z","id":"G1462789246-LAADS","original_format":"ECHO10","granule_size":"153.725586891174","browse_flag":true,"polygons":[["-13.897464 + -128.100065 -17.128547 -106.496458 0.876445 -103.03874 3.95033 -123.901045 + -13.897464 -128.100065"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1820.061.2017171215033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1820.061.2017171215033.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1820.061.2017171215033.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1820.061.2017272143819.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1825.061.2017171214959.hdf","time_start":"2000-03-06T18:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085159","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T18:30:00.000Z","id":"G1462789247-LAADS","original_format":"ECHO10","granule_size":"140.136450767517","browse_flag":true,"polygons":[["-31.303069 + -134.092751 -35.165517 -109.047818 -17.00727 -106.24455 -13.806818 -128.078507 + -31.303069 -134.092751"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1825.061.2017171214959.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1825.061.2017171214959.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1825.061.2017171214959.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1825.061.2017272143601.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1830.061.2017171215236.hdf","time_start":"2000-03-06T18:30:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085453","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T18:35:00.000Z","id":"G1462789357-LAADS","original_format":"ECHO10","granule_size":"166.889301300049","browse_flag":true,"polygons":[["-47.945821 + -143.83879 -53.135252 -110.593041 -34.90217 -108.596034 -31.218027 -134.055474 + -47.945821 -143.83879"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1830.061.2017171215236.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1830.061.2017171215236.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1830.061.2017171215236.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1830.061.2017272145126.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1835.061.2017171215245.hdf","time_start":"2000-03-06T18:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085454","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T18:40:00.000Z","id":"G1462789356-LAADS","original_format":"ECHO10","granule_size":"166.003232002258","browse_flag":true,"polygons":[["-62.624227 + -163.080749 -70.958636 -109.42054 -52.732679 -109.893633 -47.911805 -143.648534 + -62.624227 -163.080749"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1835.061.2017171215245.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1835.061.2017171215245.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1835.061.2017171215245.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1835.061.2017272145534.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1840.061.2017171220407.hdf","time_start":"2000-03-06T18:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085455","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T18:45:00.000Z","id":"G1462789351-LAADS","original_format":"ECHO10","granule_size":"152.1506690979","browse_flag":true,"polygons":[["-70.568562 + 154.52387 -87.213517 -51.698802 -70.43597 -108.457225 -62.712691 -162.631275 + -70.568562 154.52387"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1840.061.2017171220407.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1840.061.2017171220407.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1840.061.2017171220407.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1840.061.2017272144033.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1845.061.2017171220013.hdf","time_start":"2000-03-06T18:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085456","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T18:50:00.000Z","id":"G1462789355-LAADS","original_format":"ECHO10","granule_size":"38.7916049957275","browse_flag":true,"polygons":[["-64.587931 + 108.219045 -73.054934 48.743952 -86.676876 -57.90516 -70.927574 154.829889 + -64.587931 108.219045"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1845.061.2017171220013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1845.061.2017171220013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1845.061.2017171220013.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1845.061.2017272142434.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1935.061.2017171215228.hdf","time_start":"2000-03-06T19:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085457","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T19:40:00.000Z","id":"G1462789354-LAADS","original_format":"ECHO10","granule_size":"113.14937210083","browse_flag":true,"polygons":[["71.030783 + -142.626838 63.366414 -88.296677 71.296353 -43.999431 87.156018 145.997076 + 71.030783 -142.626838"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1935.061.2017171215228.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1935.061.2017171215228.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1935.061.2017171215228.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1935.061.2017272142955.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1940.061.2017171220400.hdf","time_start":"2000-03-06T19:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085791","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T19:45:00.000Z","id":"G1462789361-LAADS","original_format":"ECHO10","granule_size":"159.538360595703","browse_flag":true,"polygons":[["53.275699 + -141.753377 48.673635 -108.057446 63.661113 -88.743533 71.520233 -143.765652 + 53.275699 -141.753377"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1940.061.2017171220400.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1940.061.2017171220400.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1940.061.2017171220400.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1940.061.2017272144101.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1945.061.2017171214116.hdf","time_start":"2000-03-06T19:45:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084128","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T19:50:00.000Z","id":"G1462789210-LAADS","original_format":"ECHO10","granule_size":"161.487854003906","browse_flag":true,"polygons":[["35.461088 + -143.403578 32.023862 -118.019117 48.925353 -108.611672 53.748569 -142.162022 + 35.461088 -143.403578"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1945.061.2017171214116.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1945.061.2017171214116.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1945.061.2017171214116.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1945.061.2017272144949.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1950.061.2017171214053.hdf","time_start":"2000-03-06T19:50:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084129","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T19:55:00.000Z","id":"G1462789208-LAADS","original_format":"ECHO10","granule_size":"143.333231925964","browse_flag":true,"polygons":[["17.651752 + -145.996233 14.626833 -124.166614 32.190246 -118.38391 35.8566 -143.58927 + 17.651752 -145.996233"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1950.061.2017171214053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1950.061.2017171214053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1950.061.2017171214053.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1950.061.2017272144052.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.1955.061.2017171214420.hdf","time_start":"2000-03-06T19:55:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084463","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T20:00:00.000Z","id":"G1462789230-LAADS","original_format":"ECHO10","granule_size":"156.025835037231","browse_flag":true,"polygons":[["-0.175886 + -149.420322 -3.186036 -128.584198 14.747364 -124.402288 17.931132 -146.088901 + -0.175886 -149.420322"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1955.061.2017171214420.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.1955.061.2017171214420.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.1955.061.2017171214420.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.1955.061.2017272143949.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2000.061.2017171215006.hdf","time_start":"2000-03-06T20:00:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084464","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T20:05:00.000Z","id":"G1462789226-LAADS","original_format":"ECHO10","granule_size":"155.066287994385","browse_flag":true,"polygons":[["-17.825786 + -153.969261 -21.161791 -131.860534 -3.114291 -128.559664 -0.035245 -149.451472 + -17.825786 -153.969261"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2000.061.2017171215006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2000.061.2017171215006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2000.061.2017171215006.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2000.061.2017272144037.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2005.061.2017171214818.hdf","time_start":"2000-03-06T20:05:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084465","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T20:10:00.000Z","id":"G1462789231-LAADS","original_format":"ECHO10","granule_size":"152.651400566101","browse_flag":true,"polygons":[["-35.109493 + -160.56079 -39.190455 -134.221786 -21.009386 -131.564193 -17.736071 -153.945633 + -35.109493 -160.56079"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2005.061.2017171214818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2005.061.2017171214818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2005.061.2017171214818.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2005.061.2017272144620.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2010.061.2017171214108.hdf","time_start":"2000-03-06T20:10:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084466","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T20:15:00.000Z","id":"G1462789238-LAADS","original_format":"ECHO10","granule_size":"166.946769714355","browse_flag":true,"polygons":[["-51.474521 + -171.682805 -57.135587 -135.429727 -38.8953 -133.719906 -35.031683 -160.498101 + -51.474521 -171.682805"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2010.061.2017171214108.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2010.061.2017171214108.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2010.061.2017171214108.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2010.061.2017272145836.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2015.061.2017171215249.hdf","time_start":"2000-03-06T20:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085458","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T20:20:00.000Z","id":"G1462789352-LAADS","original_format":"ECHO10","granule_size":"163.134780883789","browse_flag":true,"polygons":[["-65.290434 + 165.233707 -74.901557 -132.638847 -56.703644 -134.664375 -51.459431 -171.443986 + -65.290434 165.233707"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2015.061.2017171215249.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2015.061.2017171215249.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2015.061.2017171215249.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2015.061.2017272145744.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2020.061.2017171215309.hdf","time_start":"2000-03-06T20:20:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085459","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T20:25:00.000Z","id":"G1462789359-LAADS","original_format":"ECHO10","granule_size":"137.83266544342","browse_flag":true,"polygons":[["-70.447222 + 117.659823 -86.08378 -6.519622 -74.353636 -131.578259 -65.423671 165.736382 + -70.447222 117.659823"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2020.061.2017171215309.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2020.061.2017171215309.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2020.061.2017171215309.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2020.061.2017272143905.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2025.061.2017171215227.hdf","time_start":"2000-03-06T20:25:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085460","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T20:30:00.000Z","id":"G1462789366-LAADS","original_format":"ECHO10","granule_size":"18.5514450073242","browse_flag":true,"polygons":[["-61.833598 + 76.89182 -69.113005 24.92038 -86.16951 -16.252738 -70.858304 117.711834 -61.833598 + 76.89182"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2025.061.2017171215227.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2025.061.2017171215227.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2025.061.2017171215227.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2025.061.2017272142358.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2110.061.2017171215248.hdf","time_start":"2000-03-06T21:10:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085461","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T21:15:00.000Z","id":"G1462789368-LAADS","original_format":"ECHO10","granule_size":"28.1048727035522","browse_flag":true,"polygons":[["84.486093 + 175.924909 70.350024 -81.067028 66.893058 -30.229012 76.281983 36.667563 84.486093 + 175.924909"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2110.061.2017171215248.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2110.061.2017171215248.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2110.061.2017171215248.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2110.061.2017272142541.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2115.061.2017171215306.hdf","time_start":"2000-03-06T21:15:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085462","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T21:20:00.000Z","id":"G1462789360-LAADS","original_format":"ECHO10","granule_size":"133.211497306824","browse_flag":true,"polygons":[["67.075051 + -166.654683 60.378239 -118.887467 70.716856 -81.123673 84.771605 169.774819 + 67.075051 -166.654683"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2115.061.2017171215306.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2115.061.2017171215306.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2115.061.2017171215306.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2115.061.2017272143620.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2120.061.2017171214117.hdf","time_start":"2000-03-06T21:20:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084130","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T21:25:00.000Z","id":"G1462789211-LAADS","original_format":"ECHO10","granule_size":"161.109906196594","browse_flag":true,"polygons":[["49.294045 + -166.722874 45.054195 -135.539888 60.693108 -119.459415 67.566087 -167.515906 + 49.294045 -166.722874"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2120.061.2017171214117.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2120.061.2017171214117.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2120.061.2017171214117.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2120.061.2017272144817.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2125.061.2017171214053.hdf","time_start":"2000-03-06T21:25:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084131","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T21:30:00.000Z","id":"G1462789212-LAADS","original_format":"ECHO10","granule_size":"154.753827095032","browse_flag":true,"polygons":[["31.477415 + -168.632728 28.172492 -144.323286 45.277287 -136.029386 49.752694 -167.062919 + 31.477415 -168.632728"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2125.061.2017171214053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2125.061.2017171214053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2125.061.2017171214053.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2125.061.2017272144817.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2130.061.2017171215034.hdf","time_start":"2000-03-06T21:30:00.000Z","updated":"2022-11-22T11:55:12.750Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715084467","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T21:35:00.000Z","id":"G1462789232-LAADS","original_format":"ECHO10","granule_size":"148.371297836304","browse_flag":true,"polygons":[["13.674009 + -171.401302 10.682306 -149.989035 28.331261 -144.676322 31.847886 -168.790462 + 13.674009 -171.401302"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2130.061.2017171215034.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2130.061.2017171215034.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2130.061.2017171215034.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2130.061.2017272144229.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2135.061.2017171215325.hdf","time_start":"2000-03-06T21:35:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085463","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T21:40:00.000Z","id":"G1462789369-LAADS","original_format":"ECHO10","granule_size":"148.221199035645","browse_flag":true,"polygons":[["-4.03718 + -175.016462 -7.088497 -154.115981 10.793579 -150.190346 13.923974 -171.476578 + -4.03718 -175.016462"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2135.061.2017171215325.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2135.061.2017171215325.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2135.061.2017171215325.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2135.061.2017272143758.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2140.061.2017171215313.hdf","time_start":"2000-03-06T21:40:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085464","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T21:45:00.000Z","id":"G1462789363-LAADS","original_format":"ECHO10","granule_size":"161.872834205627","browse_flag":true,"polygons":[["-21.739412 + -179.933509 -25.199346 -157.185541 -7.026283 -154.012075 -3.929138 -175.038057 + -21.739412 -179.933509"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2140.061.2017171215313.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2140.061.2017171215313.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2140.061.2017171215313.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2140.061.2017272145226.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2145.061.2017171215335.hdf","time_start":"2000-03-06T21:45:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715085465","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T21:50:00.000Z","id":"G1462789362-LAADS","original_format":"ECHO10","granule_size":"162.479449272156","browse_flag":true,"polygons":[["-38.878744 + 172.763969 -43.215814 -159.344065 -25.015247 -156.843732 -21.650903 -179.907552 + -38.878744 172.763969"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2145.061.2017171215335.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2145.061.2017171215335.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2145.061.2017171215335.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2145.061.2017272145322.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2150.061.2017171220013.hdf","time_start":"2000-03-06T21:50:00.000Z","updated":"2022-11-22T11:55:17.480Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086115","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T21:55:00.000Z","id":"G1462789372-LAADS","original_format":"ECHO10","granule_size":"159.351714134216","browse_flag":true,"polygons":[["-54.89652 + 159.925593 -61.132568 -160.121512 -42.888883 -158.790229 -38.809889 172.855079 + -54.89652 159.925593"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2150.061.2017171220013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2150.061.2017171220013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2150.061.2017171220013.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2150.061.2017272145139.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2155.061.2017171221325.hdf","time_start":"2000-03-06T21:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087082","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T22:00:00.000Z","id":"G1462789407-LAADS","original_format":"ECHO10","granule_size":"159.203608512878","browse_flag":true,"polygons":[["-67.555388 + 132.08923 -78.809735 -154.383375 -60.67226 -159.278198 -54.904514 160.219341 + -67.555388 132.08923"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2155.061.2017171221325.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2155.061.2017171221325.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2155.061.2017171221325.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2155.061.2017272144840.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2200.061.2017171215933.hdf","time_start":"2000-03-06T22:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086780","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T22:05:00.000Z","id":"G1462789386-LAADS","original_format":"ECHO10","granule_size":"100.631403923035","browse_flag":true,"polygons":[["-69.5644 + 81.347219 -82.604052 -11.066442 -78.230546 -153.185003 -67.773291 132.663558 + -69.5644 81.347219"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2200.061.2017171215933.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2200.061.2017171215933.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2200.061.2017171215933.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2200.061.2017272142638.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2250.061.2017171215925.hdf","time_start":"2000-03-06T22:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086781","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T22:55:00.000Z","id":"G1462789387-LAADS","original_format":"ECHO10","granule_size":"47.6064195632935","browse_flag":true,"polygons":[["80.732005 + 161.575432 69.028177 -116.900032 68.991958 -64.270766 80.155509 16.118357 + 80.732005 161.575432"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2250.061.2017171215925.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2250.061.2017171215925.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2250.061.2017171215925.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2250.061.2017272142554.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2255.061.2017171220013.hdf","time_start":"2000-03-06T22:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087083","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T23:00:00.000Z","id":"G1462789405-LAADS","original_format":"ECHO10","granule_size":"144.601419448853","browse_flag":true,"polygons":[["63.103615 + 168.946411 57.19138 -148.519385 69.397884 -117.168116 81.144823 158.545923 + 63.103615 168.946411"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2255.061.2017171220013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2255.061.2017171220013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2255.061.2017171220013.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2255.061.2017272143844.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2315.061.2017171221208.hdf","time_start":"2000-03-06T23:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087084","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T23:20:00.000Z","id":"G1462789408-LAADS","original_format":"ECHO10","granule_size":"153.077024459839","browse_flag":true,"polygons":[["-7.999865 + 159.305133 -11.108194 -179.624869 6.824158 -175.903234 9.916914 163.090208 + -7.999865 159.305133"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2315.061.2017171221208.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2315.061.2017171221208.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2315.061.2017171221208.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2315.061.2017272144252.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2320.061.2017171220007.hdf","time_start":"2000-03-06T23:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087085","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T23:25:00.000Z","id":"G1462789413-LAADS","original_format":"ECHO10","granule_size":"157.792827606201","browse_flag":true,"polygons":[["-25.548541 + 154.021145 -29.149395 177.544113 -11.031672 -179.440862 -7.904225 159.301149 + -25.548541 154.021145"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2320.061.2017171220007.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2320.061.2017171220007.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2320.061.2017171220007.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2320.061.2017272145113.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2325.061.2017171215953.hdf","time_start":"2000-03-06T23:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087086","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T23:30:00.000Z","id":"G1462789414-LAADS","original_format":"ECHO10","granule_size":"163.981200218201","browse_flag":true,"polygons":[["-42.599325 + 145.834162 -47.239847 175.596693 -28.934416 177.93659 -25.459872 154.04782 + -42.599325 145.834162"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2325.061.2017171215953.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2325.061.2017171215953.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2325.061.2017171215953.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2325.061.2017272145058.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2330.061.2017171220008.hdf","time_start":"2000-03-06T23:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087087","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T23:35:00.000Z","id":"G1462789406-LAADS","original_format":"ECHO10","granule_size":"165.60729598999","browse_flag":true,"polygons":[["-58.178444 + 130.845452 -65.123304 175.402514 -46.880415 176.206859 -42.544598 145.965354 + -58.178444 130.845452"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2330.061.2017171220008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2330.061.2017171220008.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2330.061.2017171220008.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2330.061.2017272145322.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2335.061.2017171220827.hdf","time_start":"2000-03-06T23:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088083","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-06T23:40:00.000Z","id":"G1462789417-LAADS","original_format":"ECHO10","granule_size":"144.760666847229","browse_flag":true,"polygons":[["-69.285551 + 97.375712 -82.627321 -172.361223 -64.634091 176.339113 -58.211072 131.192064 + -69.285551 97.375712"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2335.061.2017171220827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2335.061.2017171220827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2335.061.2017171220827.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2335.061.2017272143923.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000066.2340.061.2017171220755.hdf","time_start":"2000-03-06T23:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087753","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-06T23:45:00.000Z","id":"G1462789415-LAADS","original_format":"ECHO10","granule_size":"75.6334953308105","browse_flag":true,"polygons":[["-67.955168 + 46.329577 -78.7792 -29.394407 -82.002855 -171.061806 -69.574626 97.920241 + -67.955168 46.329577"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2340.061.2017171220755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000066.2340.061.2017171220755.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/066/MOD02QKM.A2000066.2340.061.2017171220755.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/066/MOBRGB.A2000066.2340.061.2017272142701.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0030.061.2017171221158.hdf","time_start":"2000-03-07T00:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086782","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T00:35:00.000Z","id":"G1462792022-LAADS","original_format":"ECHO10","granule_size":"70.9496593475342","browse_flag":true,"polygons":[["76.835566 + 140.827067 67.067965 -151.185326 70.475945 -99.97086 83.875351 1.52831 76.835566 + 140.827067"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0030.061.2017171221158.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0030.061.2017171221158.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0030.061.2017171221158.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0030.061.2017272142633.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0035.061.2017171220031.hdf","time_start":"2000-03-07T00:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087088","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T00:40:00.000Z","id":"G1462792056-LAADS","original_format":"ECHO10","granule_size":"151.365571022034","browse_flag":true,"polygons":[["59.12421 + 144.281245 53.838873 -177.349651 67.436209 -151.622221 77.294809 138.935419 + 59.12421 144.281245"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0035.061.2017171220031.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0035.061.2017171220031.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0035.061.2017171220031.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0035.061.2017272144615.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0040.061.2017171220037.hdf","time_start":"2000-03-07T00:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086783","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T00:45:00.000Z","id":"G1462792030-LAADS","original_format":"ECHO10","granule_size":"167.345698356628","browse_flag":true,"polygons":[["41.320523 + 143.115561 37.607418 170.520965 54.105464 -177.893765 59.609359 143.734904 + 41.320523 143.115561"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0040.061.2017171220037.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0040.061.2017171220037.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0040.061.2017171220037.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0040.061.2017272145321.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0045.061.2017171220020.hdf","time_start":"2000-03-07T00:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087089","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T00:50:00.000Z","id":"G1462792063-LAADS","original_format":"ECHO10","granule_size":"159.647561073303","browse_flag":true,"polygons":[["23.50157 + 140.784979 20.393099 163.438312 37.800855 170.084181 41.744686 142.874703 + 23.50157 140.784979"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0045.061.2017171220020.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0045.061.2017171220020.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0045.061.2017171220020.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0045.061.2017272145645.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0050.061.2017171221207.hdf","time_start":"2000-03-07T00:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087090","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T00:55:00.000Z","id":"G1462792061-LAADS","original_format":"ECHO10","granule_size":"140.338012695312","browse_flag":true,"polygons":[["5.726253 + 137.66013 2.748903 158.577122 20.528189 163.153287 23.821021 140.671056 5.726253 + 137.66013"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0050.061.2017171221207.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0050.061.2017171221207.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0050.061.2017171221207.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0050.061.2017272144129.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0055.061.2017171220024.hdf","time_start":"2000-03-07T00:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087091","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T01:00:00.000Z","id":"G1462792067-LAADS","original_format":"ECHO10","granule_size":"164.978553771973","browse_flag":true,"polygons":[["-11.958769 + 133.553764 -15.145337 154.945189 2.837886 158.486786 5.914642 137.609995 -11.958769 + 133.553764"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0055.061.2017171220024.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0055.061.2017171220024.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0055.061.2017171220024.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0055.061.2017272145136.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0100.061.2017171220012.hdf","time_start":"2000-03-07T01:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087092","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T01:05:00.000Z","id":"G1462792070-LAADS","original_format":"ECHO10","granule_size":"163.608864784241","browse_flag":true,"polygons":[["-29.417767 + 127.818999 -33.185466 152.302727 -15.039259 155.176981 -11.867798 133.572115 + -29.417767 127.818999"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0100.061.2017171220012.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0100.061.2017171220012.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0100.061.2017171220012.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0100.061.2017272143923.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0105.061.2017171220813.hdf","time_start":"2000-03-07T01:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087093","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T01:10:00.000Z","id":"G1462792066-LAADS","original_format":"ECHO10","granule_size":"165.943399429321","browse_flag":true,"polygons":[["-46.17863 + 118.652926 -51.167325 150.616419 -32.938178 152.734464 -29.330758 127.848503 + -46.17863 118.652926"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0105.061.2017171220813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0105.061.2017171220813.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0105.061.2017171220813.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0105.061.2017272145353.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0110.061.2017171220010.hdf","time_start":"2000-03-07T01:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087094","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T01:15:00.000Z","id":"G1462792072-LAADS","original_format":"ECHO10","granule_size":"163.039569854736","browse_flag":true,"polygons":[["-61.261047 + 100.864326 -69.101225 151.242861 -50.778382 151.289763 -46.134074 118.813275 + -61.261047 100.864326"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0110.061.2017171220010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0110.061.2017171220010.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0110.061.2017171220010.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0110.061.2017272145533.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0115.061.2017171220023.hdf","time_start":"2000-03-07T01:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087095","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T01:20:00.000Z","id":"G1462792073-LAADS","original_format":"ECHO10","granule_size":"135.803122520447","browse_flag":true,"polygons":[["-70.339933 + 61.28539 -86.115377 -176.902997 -68.58913 152.160797 -61.331232 101.283208 + -70.339933 61.28539"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0115.061.2017171220023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0115.061.2017171220023.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0115.061.2017171220023.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0115.061.2017272143059.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0120.061.2017171215952.hdf","time_start":"2000-03-07T01:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086784","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T01:25:00.000Z","id":"G1462792029-LAADS","original_format":"ECHO10","granule_size":"50.5617332458496","browse_flag":true,"polygons":[["-65.77223 + 12.887063 -74.886238 -51.181459 -85.442954 -177.255086 -70.685373 61.691091 + -65.77223 12.887063"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0120.061.2017171215952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0120.061.2017171215952.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0120.061.2017171215952.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0120.061.2017272142557.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0210.061.2017171220001.hdf","time_start":"2000-03-07T02:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087096","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T02:15:00.000Z","id":"G1462792069-LAADS","original_format":"ECHO10","granule_size":"100.370336532593","browse_flag":true,"polygons":[["72.896587 + 117.972189 64.616421 176.141126 71.195826 -136.923095 86.836725 11.580566 + 72.896587 117.972189"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0210.061.2017171220001.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0210.061.2017171220001.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0210.061.2017171220001.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0210.061.2017272143236.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0215.061.2017171220037.hdf","time_start":"2000-03-07T02:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087097","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T02:20:00.000Z","id":"G1462792068-LAADS","original_format":"ECHO10","granule_size":"158.268703460693","browse_flag":true,"polygons":[["55.147997 + 119.483738 50.350787 154.49501 64.960376 175.628451 73.37753 116.710046 55.147997 + 119.483738"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0215.061.2017171220037.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0215.061.2017171220037.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0215.061.2017171220037.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0215.061.2017272144454.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0220.061.2017171220030.hdf","time_start":"2000-03-07T02:20:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087098","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T02:25:00.000Z","id":"G1462792078-LAADS","original_format":"ECHO10","granule_size":"162.856378555298","browse_flag":true,"polygons":[["37.338424 + 117.943652 33.816448 143.928874 50.6022 153.95878 55.621199 119.009604 37.338424 + 117.943652"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0220.061.2017171220030.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0220.061.2017171220030.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0220.061.2017171220030.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0220.061.2017272145010.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0225.061.2017171220025.hdf","time_start":"2000-03-07T02:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087099","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T02:30:00.000Z","id":"G1462792074-LAADS","original_format":"ECHO10","granule_size":"159.551121711731","browse_flag":true,"polygons":[["19.521688 + 115.430782 16.476873 137.490335 33.995625 143.523998 37.740498 117.739629 + 19.521688 115.430782"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0225.061.2017171220025.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0225.061.2017171220025.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0225.061.2017171220025.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0225.061.2017272145220.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0230.061.2017171220016.hdf","time_start":"2000-03-07T02:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715086785","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T02:35:00.000Z","id":"G1462792024-LAADS","original_format":"ECHO10","granule_size":"158.01001739502","browse_flag":true,"polygons":[["1.76799 + 112.121824 -1.225472 132.953866 16.601507 137.238956 19.813608 115.338607 + 1.76799 112.121824"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0230.061.2017171220016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0230.061.2017171220016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0230.061.2017171220016.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0230.061.2017272144527.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0235.061.2017171220006.hdf","time_start":"2000-03-07T02:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087100","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T02:40:00.000Z","id":"G1462792077-LAADS","original_format":"ECHO10","granule_size":"162.848222732544","browse_flag":true,"polygons":[["-15.89682 + 107.72516 -19.174983 129.554204 -1.147596 132.931324 1.925461 112.08173 -15.89682 + 107.72516"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0235.061.2017171220006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0235.061.2017171220006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0235.061.2017171220006.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0235.061.2017272145426.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0240.061.2017171221442.hdf","time_start":"2000-03-07T02:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087101","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T02:45:00.000Z","id":"G1462792082-LAADS","original_format":"ECHO10","granule_size":"150.40031337738","browse_flag":true,"polygons":[["-33.244124 + 101.440686 -37.210331 127.108199 -19.040111 129.838785 -15.805785 107.747999 + -33.244124 101.440686"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0240.061.2017171221442.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0240.061.2017171221442.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0240.061.2017171221442.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0240.061.2017272144507.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0245.061.2017171220827.hdf","time_start":"2000-03-07T02:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088084","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T02:50:00.000Z","id":"G1462792271-LAADS","original_format":"ECHO10","granule_size":"162.532587051392","browse_flag":true,"polygons":[["-49.753684 + 91.031179 -55.169306 125.725395 -36.931559 127.586074 -33.162247 101.489517 + -49.753684 91.031179"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0245.061.2017171220827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0245.061.2017171220827.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0245.061.2017171220827.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0245.061.2017272145934.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0250.061.2017171222143.hdf","time_start":"2000-03-07T02:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088394","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T02:55:00.000Z","id":"G1462792415-LAADS","original_format":"ECHO10","granule_size":"156.68204498291","browse_flag":true,"polygons":[["-64.02566 + 69.944826 -72.972744 127.405694 -54.753418 126.351997 -49.729138 91.24581 + -64.02566 69.944826"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0250.061.2017171222143.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0250.061.2017171222143.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0250.061.2017171222143.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0250.061.2017272144857.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0255.061.2017171220808.hdf","time_start":"2000-03-07T02:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088085","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T03:00:00.000Z","id":"G1462792275-LAADS","original_format":"ECHO10","granule_size":"136.076398849487","browse_flag":true,"polygons":[["-70.608887 + 24.449765 -87.204185 -131.263322 -72.431596 128.635529 -64.132074 70.433151 + -70.608887 24.449765"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0255.061.2017171220808.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0255.061.2017171220808.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0255.061.2017171220808.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0255.061.2017272143332.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0300.061.2017171220732.hdf","time_start":"2000-03-07T03:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087754","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T03:05:00.000Z","id":"G1462792124-LAADS","original_format":"ECHO10","granule_size":"27.3751010894775","browse_flag":true,"polygons":[["-63.138064 + -18.987557 -70.966028 -74.400723 -86.961843 -143.417325 -70.95627 24.640653 + -63.138064 -18.987557"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0300.061.2017171220732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0300.061.2017171220732.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0300.061.2017171220732.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0300.061.2017272142702.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0345.061.2017171220747.hdf","time_start":"2000-03-07T03:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087755","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T03:50:00.000Z","id":"G1462792127-LAADS","original_format":"ECHO10","granule_size":"18.5304651260376","browse_flag":true,"polygons":[["86.079708 + 65.11936 70.716434 -174.311365 65.684944 -125.12787 74.352759 -63.369877 86.079708 + 65.11936"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0345.061.2017171220747.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0345.061.2017171220747.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0345.061.2017171220747.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0345.061.2017272142833.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0350.061.2017171221900.hdf","time_start":"2000-03-07T03:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088086","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T03:55:00.000Z","id":"G1462792272-LAADS","original_format":"ECHO10","granule_size":"132.730512619019","browse_flag":true,"polygons":[["68.941294 + 94.248489 61.799501 144.889023 71.067358 -174.252482 86.228859 55.89853 68.941294 + 94.248489"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0350.061.2017171221900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0350.061.2017171221900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0350.061.2017171221900.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0350.061.2017272143407.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0355.061.2017171222002.hdf","time_start":"2000-03-07T03:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089375","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T04:00:00.000Z","id":"G1462792756-LAADS","original_format":"ECHO10","granule_size":"164.379620552063","browse_flag":true,"polygons":[["51.166651 + 94.54136 46.77534 126.799156 62.136866 144.295815 69.428901 93.254381 51.166651 + 94.54136"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0355.061.2017171222002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0355.061.2017171222002.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0355.061.2017171222002.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0355.061.2017272143950.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0400.061.2017171222650.hdf","time_start":"2000-03-07T04:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089038","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T04:05:00.000Z","id":"G1462792714-LAADS","original_format":"ECHO10","granule_size":"159.757174491882","browse_flag":true,"polygons":[["33.348772 + 92.83652 29.987214 117.525759 47.001043 126.314597 51.629978 94.296443 33.348772 + 92.83652"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0400.061.2017171222650.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0400.061.2017171222650.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0400.061.2017171222650.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0400.061.2017272144057.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0405.061.2017171222510.hdf","time_start":"2000-03-07T04:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089039","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T04:10:00.000Z","id":"G1462792722-LAADS","original_format":"ECHO10","granule_size":"160.314734458923","browse_flag":true,"polygons":[["15.552528 + 90.040467 12.541397 111.632009 30.152637 117.1547 33.72346 92.552329 15.552528 + 90.040467"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0405.061.2017171222510.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0405.061.2017171222510.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0405.061.2017171222510.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0405.061.2017272144048.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0410.061.2017171221314.hdf","time_start":"2000-03-07T04:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088716","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T04:15:00.000Z","id":"G1462792581-LAADS","original_format":"ECHO10","granule_size":"153.750218391418","browse_flag":true,"polygons":[["-2.18181 + 86.526785 -5.209874 107.386861 12.656096 111.419164 15.807757 89.959003 -2.18181 + 86.526785"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0410.061.2017171221314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0410.061.2017171221314.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0410.061.2017171221314.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0410.061.2017272143839.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0415.061.2017171221310.hdf","time_start":"2000-03-07T04:15:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088717","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T04:20:00.000Z","id":"G1462792577-LAADS","original_format":"ECHO10","granule_size":"151.952171325684","browse_flag":true,"polygons":[["-19.815488 + 81.807245 -23.21 104.226664 -5.143009 107.450726 -2.0578 86.501371 -19.815488 + 81.807245"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0415.061.2017171221310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0415.061.2017171221310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0415.061.2017171221310.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0415.061.2017272144650.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0420.061.2017171221316.hdf","time_start":"2000-03-07T04:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088718","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T04:25:00.000Z","id":"G1462792579-LAADS","original_format":"ECHO10","granule_size":"167.331018447876","browse_flag":true,"polygons":[["-37.028872 + 74.871579 -41.232725 101.967531 -23.041555 104.545716 -19.726203 81.832326 + -37.028872 74.871579"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0420.061.2017171221316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0420.061.2017171221316.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0420.061.2017171221316.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0420.061.2017272145516.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0425.061.2017171221305.hdf","time_start":"2000-03-07T04:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088719","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T04:30:00.000Z","id":"G1462792578-LAADS","original_format":"ECHO10","granule_size":"163.329056739807","browse_flag":true,"polygons":[["-53.228296 + 62.92895 -59.163682 100.964306 -40.921296 102.493759 -36.955756 74.949155 + -53.228296 62.92895"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0425.061.2017171221305.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0425.061.2017171221305.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0425.061.2017171221305.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0425.061.2017272145318.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0430.061.2017171221346.hdf","time_start":"2000-03-07T04:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088720","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T04:35:00.000Z","id":"G1462792582-LAADS","original_format":"ECHO10","granule_size":"155.618365287781","browse_flag":true,"polygons":[["-66.500638 + 37.550359 -76.90095 104.716563 -58.720063 101.636678 -53.224578 63.195429 + -66.500638 37.550359"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0430.061.2017171221346.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0430.061.2017171221346.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0430.061.2017171221346.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0430.061.2017272144759.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0435.061.2017171222456.hdf","time_start":"2000-03-07T04:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088721","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T04:40:00.000Z","id":"G1462792584-LAADS","original_format":"ECHO10","granule_size":"116.649151802063","browse_flag":true,"polygons":[["-70.079237 + -11.942647 -84.398296 -116.90276 -76.32542 106.222799 -66.6562 38.086094 -70.079237 + -11.942647"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0435.061.2017171222456.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0435.061.2017171222456.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0435.061.2017171222456.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0435.061.2017272143129.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0525.061.2017171220742.hdf","time_start":"2000-03-07T05:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087756","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T05:30:00.000Z","id":"G1462792128-LAADS","original_format":"ECHO10","granule_size":"38.6414604187012","browse_flag":true,"polygons":[["82.611437 + 58.937691 69.778848 149.512504 68.033156 -158.329461 78.255362 -85.187057 + 82.611437 58.937691"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0525.061.2017171220742.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0525.061.2017171220742.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0525.061.2017171220742.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0525.061.2017272142736.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0530.061.2017171220834.hdf","time_start":"2000-03-07T05:30:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088087","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T05:35:00.000Z","id":"G1462792280-LAADS","original_format":"ECHO10","granule_size":"146.287330627441","browse_flag":true,"polygons":[["64.972895 + 69.934479 58.719749 114.795833 70.142346 149.34928 82.977101 54.7299 64.972895 + 69.934479"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0530.061.2017171220834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0530.061.2017171220834.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0530.061.2017171220834.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0530.061.2017272143804.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0535.061.2017171221333.hdf","time_start":"2000-03-07T05:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088722","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T05:40:00.000Z","id":"G1462792589-LAADS","original_format":"ECHO10","granule_size":"164.448803901672","browse_flag":true,"polygons":[["47.185384 + 69.509409 43.113801 99.539007 59.028942 114.203981 65.466809 69.185565 47.185384 + 69.509409"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0535.061.2017171221333.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0535.061.2017171221333.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0535.061.2017171221333.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0535.061.2017272143940.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0540.061.2017171221333.hdf","time_start":"2000-03-07T05:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088723","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T05:45:00.000Z","id":"G1462792585-LAADS","original_format":"ECHO10","granule_size":"165.055698394775","browse_flag":true,"polygons":[["29.367449 + 67.483692 26.131473 91.268649 43.329995 99.056054 47.637565 69.205563 29.367449 + 67.483692"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0540.061.2017171221333.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0540.061.2017171221333.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0540.061.2017171221333.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0540.061.2017272143955.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0545.061.2017171221345.hdf","time_start":"2000-03-07T05:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089040","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T05:50:00.000Z","id":"G1462792713-LAADS","original_format":"ECHO10","granule_size":"150.63432598114","browse_flag":true,"polygons":[["11.573827 + 64.609948 8.592458 85.857076 26.279801 90.950604 29.726551 67.324143 11.573827 + 64.609948"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0545.061.2017171221345.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0545.061.2017171221345.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0545.061.2017171221345.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0545.061.2017272143219.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0550.061.2017171221330.hdf","time_start":"2000-03-07T05:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089041","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T05:55:00.000Z","id":"G1462792724-LAADS","original_format":"ECHO10","granule_size":"145.085550308228","browse_flag":true,"polygons":[["-6.126474 + 60.87893 -9.205572 81.866981 8.69832 85.679675 11.806636 64.543427 -6.126474 + 60.87893"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0550.061.2017171221330.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0550.061.2017171221330.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0550.061.2017171221330.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0550.061.2017272144014.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0555.061.2017171222542.hdf","time_start":"2000-03-07T05:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089376","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T06:00:00.000Z","id":"G1462792761-LAADS","original_format":"ECHO10","granule_size":"153.247825622559","browse_flag":true,"polygons":[["-23.711006 + 55.787816 -27.240552 78.92854 -9.139353 82.008018 -6.028713 60.865627 -23.711006 + 55.787816"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0555.061.2017171222542.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0555.061.2017171222542.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0555.061.2017171222542.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0555.061.2017272144457.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0600.061.2017171221352.hdf","time_start":"2000-03-07T06:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088724","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T06:05:00.000Z","id":"G1462792588-LAADS","original_format":"ECHO10","granule_size":"159.37366104126","browse_flag":true,"polygons":[["-40.765251 + 48.075003 -45.24839 76.881499 -27.040487 79.292293 -23.622782 55.815306 -40.765251 + 48.075003"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0600.061.2017171221352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0600.061.2017171221352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0600.061.2017171221352.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0600.061.2017272144815.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0605.061.2017171221353.hdf","time_start":"2000-03-07T06:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088725","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T06:10:00.000Z","id":"G1462792583-LAADS","original_format":"ECHO10","granule_size":"166.217122077942","browse_flag":true,"polygons":[["-56.573356 + 34.212356 -63.147915 76.377106 -44.905296 77.460394 -40.702405 48.184543 -56.573356 + 34.212356"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0605.061.2017171221353.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0605.061.2017171221353.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0605.061.2017171221353.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0605.061.2017272150231.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0610.061.2017171221637.hdf","time_start":"2000-03-07T06:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088726","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T06:15:00.000Z","id":"G1462792593-LAADS","original_format":"ECHO10","granule_size":"146.972045898438","browse_flag":true,"polygons":[["-68.506356 + 3.629913 -80.774314 84.225548 -62.678121 77.096963 -56.595239 34.538284 -68.506356 + 3.629913"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0610.061.2017171221637.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0610.061.2017171221637.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0610.061.2017171221637.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0610.061.2017272144317.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0615.061.2017171221409.hdf","time_start":"2000-03-07T06:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088395","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T06:20:00.000Z","id":"G1462792416-LAADS","original_format":"ECHO10","granule_size":"90.456880569458","browse_flag":true,"polygons":[["-68.792854 + -47.595217 -80.696694 -130.815684 -80.156726 86.029288 -68.717579 4.17013 + -68.792854 -47.595217"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0615.061.2017171221409.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0615.061.2017171221409.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0615.061.2017171221409.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0615.061.2017272143241.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0705.061.2017171221256.hdf","time_start":"2000-03-07T07:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088727","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T07:10:00.000Z","id":"G1462792586-LAADS","original_format":"ECHO10","granule_size":"63.2821884155273","browse_flag":true,"polygons":[["78.768446 + 40.349885 68.109538 114.454433 69.830949 166.772361 82.067872 -103.574507 + 78.768446 40.349885"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0705.061.2017171221256.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0705.061.2017171221256.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0705.061.2017171221256.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0705.061.2017272143016.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0710.061.2017171221358.hdf","time_start":"2000-03-07T07:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088728","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T07:15:00.000Z","id":"G1462792587-LAADS","original_format":"ECHO10","granule_size":"152.910530090332","browse_flag":true,"polygons":[["61.092565 + 45.379455 55.515775 85.713237 68.477649 114.097816 79.208456 37.992289 61.092565 + 45.379455"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0710.061.2017171221358.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0710.061.2017171221358.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0710.061.2017171221358.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0710.061.2017272144630.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0715.061.2017171221408.hdf","time_start":"2000-03-07T07:15:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089042","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T07:20:00.000Z","id":"G1462792720-LAADS","original_format":"ECHO10","granule_size":"158.651748657227","browse_flag":true,"polygons":[["43.205897 + 44.419339 39.389164 72.606865 55.795479 85.152894 61.58026 44.76095 43.205897 + 44.419339"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0715.061.2017171221408.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0715.061.2017171221408.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0715.061.2017171221408.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0715.061.2017272144201.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0720.061.2017171221424.hdf","time_start":"2000-03-07T07:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089043","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T07:25:00.000Z","id":"G1462792716-LAADS","original_format":"ECHO10","granule_size":"153.919445037842","browse_flag":true,"polygons":[["25.381747 + 42.196057 22.25399 65.128395 39.603521 72.098904 43.646161 44.177274 25.381747 + 42.196057"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0720.061.2017171221424.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0720.061.2017171221424.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0720.061.2017171221424.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0720.061.2017272143245.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0725.061.2017171222531.hdf","time_start":"2000-03-07T07:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089044","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T07:30:00.000Z","id":"G1462792717-LAADS","original_format":"ECHO10","granule_size":"141.546599388123","browse_flag":true,"polygons":[["7.603217 + 39.192417 4.632673 60.14959 22.38343 64.878959 25.716082 42.111282 7.603217 + 39.192417"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0725.061.2017171222531.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0725.061.2017171222531.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0725.061.2017171222531.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0725.061.2017272143208.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0730.061.2017171221346.hdf","time_start":"2000-03-07T07:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089045","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T07:35:00.000Z","id":"G1462792725-LAADS","original_format":"ECHO10","granule_size":"152.915632247925","browse_flag":true,"polygons":[["-10.085243 + 35.180934 -13.235008 56.400079 4.727756 60.024899 7.803032 39.103376 -10.085243 + 35.180934"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0730.061.2017171221346.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0730.061.2017171221346.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0730.061.2017171221346.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0730.061.2017272143944.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0735.061.2017171221416.hdf","time_start":"2000-03-07T07:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089046","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T07:40:00.000Z","id":"G1462792719-LAADS","original_format":"ECHO10","granule_size":"159.683868408203","browse_flag":true,"polygons":[["-27.58932 + 29.67884 -31.269734 53.6679 -13.137402 56.607539 -9.994558 35.195444 -27.58932 + 29.67884"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0735.061.2017171221416.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0735.061.2017171221416.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0735.061.2017171221416.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0735.061.2017272144857.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0740.061.2017171221342.hdf","time_start":"2000-03-07T07:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089047","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T07:45:00.000Z","id":"G1462792721-LAADS","original_format":"ECHO10","granule_size":"162.527714729309","browse_flag":true,"polygons":[["-44.459979 + 21.043037 -49.261666 51.857171 -31.036595 54.076656 -27.508071 29.715156 -44.459979 + 21.043037"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0740.061.2017171221342.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0740.061.2017171221342.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0740.061.2017171221342.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0740.061.2017272145441.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0745.061.2017171222444.hdf","time_start":"2000-03-07T07:45:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090013","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T07:50:00.000Z","id":"G1462792799-LAADS","original_format":"ECHO10","granule_size":"165.176669120789","browse_flag":true,"polygons":[["-59.752647 + 4.712875 -67.123911 51.973589 -48.884614 52.452242 -44.395856 21.14513 -59.752647 + 4.712875"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0745.061.2017171222444.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0745.061.2017171222444.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0745.061.2017171222444.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0745.061.2017272150024.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0750.061.2017171222447.hdf","time_start":"2000-03-07T07:50:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090014","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T07:55:00.000Z","id":"G1462792801-LAADS","original_format":"ECHO10","granule_size":"142.475742340088","browse_flag":true,"polygons":[["-69.908876 + -31.803353 -84.481412 70.517012 -66.626985 52.850501 -59.804569 5.107555 -69.908876 + -31.803353"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0750.061.2017171222447.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0750.061.2017171222447.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0750.061.2017171222447.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0750.061.2017272144037.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0755.061.2017171222434.hdf","time_start":"2000-03-07T07:55:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090015","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T08:00:00.000Z","id":"G1462792807-LAADS","original_format":"ECHO10","granule_size":"63.8328495025635","browse_flag":true,"polygons":[["-66.879228 + -81.785607 -76.836767 -151.283923 -83.815053 72.04392 -70.178875 -31.335049 + -66.879228 -81.785607"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0755.061.2017171222434.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0755.061.2017171222434.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0755.061.2017171222434.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0755.061.2017272143018.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0845.061.2017171222044.hdf","time_start":"2000-03-07T08:45:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088396","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T08:50:00.000Z","id":"G1462792417-LAADS","original_format":"ECHO10","granule_size":"93.4132585525513","browse_flag":true,"polygons":[["74.848702 + 18.316879 65.883187 81.002299 70.942808 130.36176 85.566168 -110.298444 74.848702 + 18.316879"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0845.061.2017171222044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0845.061.2017171222044.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0845.061.2017171222044.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0845.061.2017272143343.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0850.061.2017171222310.hdf","time_start":"2000-03-07T08:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088729","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T08:55:00.000Z","id":"G1462792592-LAADS","original_format":"ECHO10","granule_size":"155.902282714844","browse_flag":true,"polygons":[["57.118097 + 20.629779 52.089479 57.252298 66.234573 80.530568 75.319025 16.740444 57.118097 + 20.629779"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0850.061.2017171222310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0850.061.2017171222310.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0850.061.2017171222310.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0850.061.2017272144816.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0855.061.2017171220854.hdf","time_start":"2000-03-07T08:55:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088088","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T09:00:00.000Z","id":"G1462792282-LAADS","original_format":"ECHO10","granule_size":"162.956825256348","browse_flag":true,"polygons":[["39.310688 + 19.284532 35.701039 45.94762 52.351218 56.702188 57.599401 20.140334 39.310688 + 19.284532"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0855.061.2017171220854.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0855.061.2017171220854.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0855.061.2017171220854.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0855.061.2017272144656.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0900.061.2017171220903.hdf","time_start":"2000-03-07T09:00:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088089","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T09:05:00.000Z","id":"G1462792278-LAADS","original_format":"ECHO10","granule_size":"163.044646263123","browse_flag":true,"polygons":[["21.402859 + 16.867095 18.33793 39.163784 35.890382 45.511522 39.727955 19.080877 21.402859 + 16.867095"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0900.061.2017171220903.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0900.061.2017171220903.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0900.061.2017171220903.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0900.061.2017272144058.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0905.061.2017171220836.hdf","time_start":"2000-03-07T09:05:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088090","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T09:10:00.000Z","id":"G1462792279-LAADS","original_format":"ECHO10","granule_size":"158.429360389709","browse_flag":true,"polygons":[["3.646183 + 13.637391 0.660346 34.497638 18.463809 38.915063 21.710758 16.754804 3.646183 + 13.637391"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0905.061.2017171220836.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0905.061.2017171220836.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0905.061.2017171220836.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0905.061.2017272143256.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0910.061.2017171222139.hdf","time_start":"2000-03-07T09:10:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088397","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T09:15:00.000Z","id":"G1462792419-LAADS","original_format":"ECHO10","granule_size":"168.605527877808","browse_flag":true,"polygons":[["-14.02792 + 9.373632 -17.259919 30.971613 0.745655 34.425737 3.818387 13.583716 -14.02792 + 9.373632"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0910.061.2017171222139.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0910.061.2017171222139.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0910.061.2017171222139.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0910.061.2017272144943.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0915.061.2017171220902.hdf","time_start":"2000-03-07T09:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088091","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T09:20:00.000Z","id":"G1462792288-LAADS","original_format":"ECHO10","granule_size":"163.582739830017","browse_flag":true,"polygons":[["-31.428026 + 3.359967 -35.296053 28.448673 -17.140607 31.247045 -13.934133 9.393798 -31.428026 + 3.359967"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0915.061.2017171220902.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0915.061.2017171220902.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0915.061.2017171220902.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0915.061.2017272144315.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0920.061.2017171220900.hdf","time_start":"2000-03-07T09:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088398","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T09:25:00.000Z","id":"G1462792422-LAADS","original_format":"ECHO10","granule_size":"165.979128837585","browse_flag":true,"polygons":[["-48.061814 + -6.425896 -53.2665 26.914771 -35.034128 28.903303 -31.343857 3.399595 -48.061814 + -6.425896"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0920.061.2017171220900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0920.061.2017171220900.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0920.061.2017171220900.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0920.061.2017272145728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0925.061.2017171221356.hdf","time_start":"2000-03-07T09:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089048","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T09:30:00.000Z","id":"G1462792718-LAADS","original_format":"ECHO10","granule_size":"165.554397583008","browse_flag":true,"polygons":[["-62.713134 + -25.783464 -71.08806 28.119636 -52.863155 27.611259 -48.027415 -6.236299 -62.713134 + -25.783464"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0925.061.2017171221356.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0925.061.2017171221356.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0925.061.2017171221356.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0925.061.2017272145859.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0930.061.2017171221356.hdf","time_start":"2000-03-07T09:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089049","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T09:35:00.000Z","id":"G1462792723-LAADS","original_format":"ECHO10","granule_size":"143.000947952271","browse_flag":true,"polygons":[["-70.576273 + -68.36435 -87.274744 88.204728 -70.566195 29.043897 -62.805629 -25.326848 + -70.576273 -68.36435"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0930.061.2017171221356.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0930.061.2017171221356.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0930.061.2017171221356.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0930.061.2017272143736.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.0935.061.2017171222631.hdf","time_start":"2000-03-07T09:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088730","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T09:40:00.000Z","id":"G1462792596-LAADS","original_format":"ECHO10","granule_size":"37.7676820755005","browse_flag":true,"polygons":[["-64.473803 + -114.442346 -72.923516 -173.907781 -86.681925 82.091215 -70.898537 -68.060369 + -64.473803 -114.442346"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0935.061.2017171222631.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.0935.061.2017171222631.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.0935.061.2017171222631.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.0935.061.2017272142952.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1025.061.2017171220829.hdf","time_start":"2000-03-07T10:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088092","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T10:30:00.000Z","id":"G1462792285-LAADS","original_format":"ECHO10","granule_size":"109.059390068054","browse_flag":true,"polygons":[["70.900191 + -5.072736 63.232136 49.078032 71.238173 93.084754 87.135066 -73.674214 70.900191 + -5.072736"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1025.061.2017171220829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1025.061.2017171220829.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1025.061.2017171220829.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1025.061.2017272143812.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1030.061.2017171220851.hdf","time_start":"2000-03-07T10:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088399","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T10:35:00.000Z","id":"G1462792413-LAADS","original_format":"ECHO10","granule_size":"161.69540977478","browse_flag":true,"polygons":[["53.138467 + -4.248322 48.552444 29.347308 63.566891 48.535817 71.384933 -6.209911 53.138467 + -4.248322"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1030.061.2017171220851.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1030.061.2017171220851.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1030.061.2017171220851.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1030.061.2017272145407.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1035.061.2017171222026.hdf","time_start":"2000-03-07T10:35:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088093","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T10:40:00.000Z","id":"G1462792281-LAADS","original_format":"ECHO10","granule_size":"153.249038696289","browse_flag":true,"polygons":[["35.325192 + -5.905556 31.88797 19.453333 48.795015 28.822575 53.609828 -4.650791 35.325192 + -5.905556"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1035.061.2017171222026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1035.061.2017171222026.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1035.061.2017171222026.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1035.061.2017272144421.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1040.061.2017171220859.hdf","time_start":"2000-03-07T10:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088094","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T10:45:00.000Z","id":"G1462792286-LAADS","original_format":"ECHO10","granule_size":"157.567922592163","browse_flag":true,"polygons":[["17.51599 + -8.503499 14.492864 13.306173 32.058784 19.071546 35.71901 -6.088752 17.51599 + -8.503499"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1040.061.2017171220859.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1040.061.2017171220859.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1040.061.2017171220859.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1040.061.2017272143231.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1045.061.2017171220902.hdf","time_start":"2000-03-07T10:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088400","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T10:50:00.000Z","id":"G1462792423-LAADS","original_format":"ECHO10","granule_size":"150.757640838623","browse_flag":true,"polygons":[["-0.310176 + -11.940692 -3.320928 8.894205 14.613491 13.067805 17.79445 -8.601456 -0.310176 + -11.940692"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1045.061.2017171220902.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1045.061.2017171220902.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1045.061.2017171220902.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1045.061.2017272143734.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1050.061.2017171220857.hdf","time_start":"2000-03-07T10:50:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088095","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T10:55:00.000Z","id":"G1462792283-LAADS","original_format":"ECHO10","granule_size":"149.112460136414","browse_flag":true,"polygons":[["-17.958527 + -16.49904 -21.298777 5.632702 -3.250697 8.928383 -0.170923 -11.969695 -17.958527 + -16.49904"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1050.061.2017171220857.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1050.061.2017171220857.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1050.061.2017171220857.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1050.061.2017272144444.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1055.061.2017171220918.hdf","time_start":"2000-03-07T10:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088401","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T11:00:00.000Z","id":"G1462792421-LAADS","original_format":"ECHO10","granule_size":"153.509366989136","browse_flag":true,"polygons":[["-35.236273 + -23.115276 -39.326414 3.274578 -21.145104 5.927524 -17.867949 -16.477365 -35.236273 + -23.115276"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1055.061.2017171220918.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1055.061.2017171220918.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1055.061.2017171220918.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1055.061.2017272144235.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1100.061.2017171222154.hdf","time_start":"2000-03-07T11:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088402","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T11:05:00.000Z","id":"G1462792418-LAADS","original_format":"ECHO10","granule_size":"162.458508491516","browse_flag":true,"polygons":[["-51.591664 + -34.286599 -57.270258 2.080281 -39.029988 3.779131 -35.159911 -23.048785 -51.591664 + -34.286599"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1100.061.2017171222154.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1100.061.2017171222154.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1100.061.2017171222154.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1100.061.2017272150349.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1105.061.2017171221421.hdf","time_start":"2000-03-07T11:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089050","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T11:10:00.000Z","id":"G1462792728-LAADS","original_format":"ECHO10","granule_size":"160.23671913147","browse_flag":true,"polygons":[["-65.372495 + -57.51642 -75.04136 4.706647 -56.839039 2.736342 -51.576444 -34.046832 -65.372495 + -57.51642"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1105.061.2017171221421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1105.061.2017171221421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1105.061.2017171221421.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1105.061.2017272145857.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1110.061.2017171221416.hdf","time_start":"2000-03-07T11:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089051","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T11:15:00.000Z","id":"G1462792729-LAADS","original_format":"ECHO10","granule_size":"133.340766906738","browse_flag":true,"polygons":[["-70.430617 + -105.239869 -85.992483 132.319381 -74.487608 5.965479 -65.50725 -56.995179 + -70.430617 -105.239869"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1110.061.2017171221416.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1110.061.2017171221416.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1110.061.2017171221416.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1110.061.2017272143735.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1200.061.2017171221509.hdf","time_start":"2000-03-07T12:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088403","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T12:05:00.000Z","id":"G1462792425-LAADS","original_format":"ECHO10","granule_size":"29.4023389816284","browse_flag":true,"polygons":[["84.358905 + -45.962233 70.323083 56.028783 66.980828 106.995243 76.418143 174.283903 84.358905 + -45.962233"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1200.061.2017171221509.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1200.061.2017171221509.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1200.061.2017171221509.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1200.061.2017272143025.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1205.061.2017171222043.hdf","time_start":"2000-03-07T12:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088404","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T12:10:00.000Z","id":"G1462792428-LAADS","original_format":"ECHO10","granule_size":"153.197441101074","browse_flag":true,"polygons":[["66.936145 + -29.125082 60.268251 18.441732 70.679841 55.971449 84.653143 -51.918534 66.936145 + -29.125082"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1205.061.2017171222043.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1205.061.2017171222043.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1205.061.2017171222043.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1205.061.2017272144859.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1210.061.2017171220911.hdf","time_start":"2000-03-07T12:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088405","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T12:15:00.000Z","id":"G1462792424-LAADS","original_format":"ECHO10","granule_size":"158.818323135376","browse_flag":true,"polygons":[["49.155846 + -29.224276 44.924371 1.892771 60.580379 17.875617 67.426285 -29.985616 49.155846 + -29.224276"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1210.061.2017171220911.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1210.061.2017171220911.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1210.061.2017171220911.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1210.061.2017272150035.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1215.061.2017171220819.hdf","time_start":"2000-03-07T12:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087757","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T12:20:00.000Z","id":"G1462792205-LAADS","original_format":"ECHO10","granule_size":"16.7453985214233","browse_flag":true,"polygons":[["47.018188 + -29.537171 42.769844 -0.029713 45.149712 1.393 49.611957 -29.237194 47.018188 + -29.537171"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1215.061.2017171220819.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1215.061.2017171220819.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1215.061.2017171220819.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1215.061.2017272142742.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1225.061.2017171220850.hdf","time_start":"2000-03-07T12:25:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715087758","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T12:30:00.000Z","id":"G1462792207-LAADS","original_format":"ECHO10","granule_size":"104.275096893311","browse_flag":true,"polygons":[["-4.154987 + -37.596955 -7.235139 -16.555835 5.23745 -14.042884 8.310298 -34.896307 -4.154987 + -37.596955"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1225.061.2017171220850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1225.061.2017171220850.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1225.061.2017171220850.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1225.061.2017272144307.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1230.061.2017171220839.hdf","time_start":"2000-03-07T12:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088406","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T12:35:00.000Z","id":"G1462792433-LAADS","original_format":"ECHO10","granule_size":"78.5941820144653","browse_flag":true,"polygons":[["-13.646739 + -40.066164 -16.880296 -18.290203 -7.146087 -16.661681 -4.071738 -37.521177 + -13.646739 -40.066164"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1230.061.2017171220839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1230.061.2017171220839.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1230.061.2017171220839.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1230.061.2017272143620.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1340.061.2017171220833.hdf","time_start":"2000-03-07T13:40:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088096","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T13:45:00.000Z","id":"G1462792284-LAADS","original_format":"ECHO10","granule_size":"46.7846193313599","browse_flag":true,"polygons":[["84.647982 + -72.321411 70.415909 31.940658 69.056122 72.884422 80.355055 152.451036 84.647982 + -72.321411"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1340.061.2017171220833.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1340.061.2017171220833.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1340.061.2017171220833.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1340.061.2017272142926.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1400.061.2017171221753.hdf","time_start":"2000-03-07T14:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089052","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T14:05:00.000Z","id":"G1462792726-LAADS","original_format":"ECHO10","granule_size":"154.66273021698","browse_flag":true,"polygons":[["9.560232 + -59.366538 6.585064 -38.260675 24.307235 -33.358711 27.696129 -56.550117 9.560232 + -59.366538"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1400.061.2017171221753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1400.061.2017171221753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1400.061.2017171221753.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1400.061.2017272144802.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1405.061.2017171222213.hdf","time_start":"2000-03-07T14:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088407","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T14:10:00.000Z","id":"G1462792432-LAADS","original_format":"ECHO10","granule_size":"171.638822555542","browse_flag":true,"polygons":[["-8.136878 + -63.217126 -11.246614 -42.136402 6.687146 -38.42145 9.778323 -59.423428 -8.136878 + -63.217126"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1405.061.2017171222213.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1405.061.2017171222213.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1405.061.2017171222213.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1405.061.2017272145004.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1410.061.2017171222246.hdf","time_start":"2000-03-07T14:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088731","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T14:15:00.000Z","id":"G1462792591-LAADS","original_format":"ECHO10","granule_size":"169.168629646301","browse_flag":true,"polygons":[["-25.686059 + -68.492845 -29.284303 -44.960651 -11.168583 -41.952045 -8.043755 -63.200144 + -25.686059 -68.492845"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1410.061.2017171222246.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1410.061.2017171222246.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1410.061.2017171222246.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1410.061.2017272144721.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1415.061.2017171220939.hdf","time_start":"2000-03-07T14:15:00.000Z","updated":"2022-11-22T11:55:21.920Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088097","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T14:20:00.000Z","id":"G1462792287-LAADS","original_format":"ECHO10","granule_size":"149.289129257202","browse_flag":true,"polygons":[["-42.750311 + -76.657221 -47.384272 -46.903609 -29.070826 -44.569861 -25.617609 -68.426055 + -42.750311 -76.657221"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1415.061.2017171220939.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1415.061.2017171220939.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1415.061.2017171220939.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1415.061.2017272144023.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1420.061.2017171221447.hdf","time_start":"2000-03-07T14:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088732","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T14:25:00.000Z","id":"G1462792594-LAADS","original_format":"ECHO10","granule_size":"154.505324363708","browse_flag":true,"polygons":[["-58.285923 + -91.813397 -65.258715 -47.0707 -47.016615 -46.289311 -42.669701 -76.607552 + -58.285923 -91.813397"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1420.061.2017171221447.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1420.061.2017171221447.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1420.061.2017171221447.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1420.061.2017272145754.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1425.061.2017171221421.hdf","time_start":"2000-03-07T14:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088733","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T14:30:00.000Z","id":"G1462792595-LAADS","original_format":"ECHO10","granule_size":"153.017484664917","browse_flag":true,"polygons":[["-69.335278 + -125.486194 -82.764559 -34.671722 -64.771432 -46.192912 -58.322101 -91.457397 + -69.335278 -125.486194"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1425.061.2017171221421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1425.061.2017171221421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1425.061.2017171221421.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1425.061.2017272144702.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1430.061.2017171221359.hdf","time_start":"2000-03-07T14:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088734","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T14:35:00.000Z","id":"G1462792590-LAADS","original_format":"ECHO10","granule_size":"76.1245241165161","browse_flag":true,"polygons":[["-67.847109 + -176.423669 -78.666651 108.556471 -82.157921 -33.601128 -69.58025 -124.986502 + -67.847109 -176.423669"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1430.061.2017171221359.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1430.061.2017171221359.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1430.061.2017171221359.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1430.061.2017272143056.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1520.061.2017171222511.hdf","time_start":"2000-03-07T15:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088735","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T15:25:00.000Z","id":"G1462792600-LAADS","original_format":"ECHO10","granule_size":"43.4070291519165","browse_flag":true,"polygons":[["81.948514 + -88.006691 69.542049 -1.146828 70.514669 37.142227 84.121441 137.157877 81.948514 + -88.006691"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1520.061.2017171222511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1520.061.2017171222511.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1520.061.2017171222511.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1520.061.2017272143047.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1600.061.2017171220934.hdf","time_start":"2000-03-07T16:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088408","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T16:05:00.000Z","id":"G1462792426-LAADS","original_format":"ECHO10","granule_size":"159.67062664032","browse_flag":true,"polygons":[["-61.358613 + -121.809019 -69.229049 -71.203377 -50.907394 -71.195361 -46.251834 -103.758431 + -61.358613 -121.809019"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1600.061.2017171220934.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1600.061.2017171220934.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1600.061.2017171220934.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1600.061.2017272150405.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1605.061.2017171221435.hdf","time_start":"2000-03-07T16:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089053","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T16:10:00.000Z","id":"G1462792732-LAADS","original_format":"ECHO10","granule_size":"151.061069488525","browse_flag":true,"polygons":[["-70.363775 + -161.595716 -86.203789 -37.919362 -68.715536 -70.259481 -61.429856 -121.387024 + -70.363775 -161.595716"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1605.061.2017171221435.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1605.061.2017171221435.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1605.061.2017171221435.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1605.061.2017272144510.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1610.061.2017171221330.hdf","time_start":"2000-03-07T16:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089054","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T16:15:00.000Z","id":"G1462792730-LAADS","original_format":"ECHO10","granule_size":"50.6145887374878","browse_flag":true,"polygons":[["-65.657937 + 150.209692 -74.772667 86.639427 -85.585176 -39.281952 -70.663597 -161.209888 + -65.657937 150.209692"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1610.061.2017171221330.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1610.061.2017171221330.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1610.061.2017171221330.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1610.061.2017272142953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1700.061.2017171222529.hdf","time_start":"2000-03-07T17:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088736","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T17:05:00.000Z","id":"G1462792599-LAADS","original_format":"ECHO10","granule_size":"109.480995178223","browse_flag":true,"polygons":[["72.769974 + -104.50136 64.531931 -46.578241 71.206238 0.178238 86.886529 151.240518 72.769974 + -104.50136"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1700.061.2017171222529.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1700.061.2017171222529.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1700.061.2017171222529.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1700.061.2017272143438.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1705.061.2017171221416.hdf","time_start":"2000-03-07T17:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089055","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T17:10:00.000Z","id":"G1462792727-LAADS","original_format":"ECHO10","granule_size":"155.351090431213","browse_flag":true,"polygons":[["55.01642 + -103.038459 50.256135 -68.154315 64.904849 -47.162225 73.253228 -105.7826 + 55.01642 -103.038459"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1705.061.2017171221416.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1705.061.2017171221416.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1705.061.2017171221416.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1705.061.2017272144720.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1710.061.2017171220920.hdf","time_start":"2000-03-07T17:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088409","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T17:15:00.000Z","id":"G1462792427-LAADS","original_format":"ECHO10","granule_size":"157.5559425354","browse_flag":true,"polygons":[["37.209069 + -104.52126 33.696593 -78.620731 50.490635 -68.637514 55.49706 -103.427838 + 37.209069 -104.52126"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1710.061.2017171220920.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1710.061.2017171220920.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1710.061.2017171220920.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1710.061.2017272144211.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1715.061.2017171220958.hdf","time_start":"2000-03-07T17:15:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088410","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T17:20:00.000Z","id":"G1462792431-LAADS","original_format":"ECHO10","granule_size":"156.946299552917","browse_flag":true,"polygons":[["19.399982 + -107.081375 16.351774 -85.030919 33.872895 -79.015448 37.609435 -104.768553 + 19.399982 -107.081375"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1715.061.2017171220958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1715.061.2017171220958.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1715.061.2017171220958.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1715.061.2017272144815.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1720.061.2017171220940.hdf","time_start":"2000-03-07T17:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088411","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T17:25:00.000Z","id":"G1462792435-LAADS","original_format":"ECHO10","granule_size":"157.538547515869","browse_flag":true,"polygons":[["1.645037 + -110.39963 -1.350912 -89.55915 16.47688 -85.283635 19.688253 -107.177774 1.645037 + -110.39963"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1720.061.2017171220940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1720.061.2017171220940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1720.061.2017171220940.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1720.061.2017272144754.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1725.061.2017171220938.hdf","time_start":"2000-03-07T17:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088412","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T17:30:00.000Z","id":"G1462792439-LAADS","original_format":"ECHO10","granule_size":"161.610650062561","browse_flag":true,"polygons":[["-16.018927 + -114.799183 -19.303091 -92.941239 -1.274253 -89.570335 1.799696 -110.433647 + -16.018927 -114.799183"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1725.061.2017171220938.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1725.061.2017171220938.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1725.061.2017171220938.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1725.061.2017272144702.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1730.061.2017171220942.hdf","time_start":"2000-03-07T17:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088413","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T17:35:00.000Z","id":"G1462792429-LAADS","original_format":"ECHO10","granule_size":"145.574272155762","browse_flag":true,"polygons":[["-33.361302 + -121.103252 -37.335822 -95.392981 -19.164646 -92.668161 -15.928279 -114.778608 + -33.361302 -121.103252"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1730.061.2017171220942.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1730.061.2017171220942.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1730.061.2017171220942.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1730.061.2017272144315.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1735.061.2017171221014.hdf","time_start":"2000-03-07T17:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088414","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T17:40:00.000Z","id":"G1462792434-LAADS","original_format":"ECHO10","granule_size":"163.029347419739","browse_flag":true,"polygons":[["-49.863222 + -131.552403 -55.293895 -96.761427 -37.05593 -94.911502 -33.280531 -121.051125 + -49.863222 -131.552403"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1735.061.2017171221014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1735.061.2017171221014.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1735.061.2017171221014.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1735.061.2017272145605.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1740.061.2017171221439.hdf","time_start":"2000-03-07T17:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089056","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T17:45:00.000Z","id":"G1462792733-LAADS","original_format":"ECHO10","granule_size":"162.858449935913","browse_flag":true,"polygons":[["-64.107509 + -152.759743 -73.088535 -94.824378 -54.875013 -96.03108 -49.838009 -131.338673 + -64.107509 -152.759743"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1740.061.2017171221439.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1740.061.2017171221439.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1740.061.2017171221439.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1740.061.2017272150209.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1745.061.2017171221415.hdf","time_start":"2000-03-07T17:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089057","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T17:50:00.000Z","id":"G1462792734-LAADS","original_format":"ECHO10","granule_size":"147.196565628052","browse_flag":true,"polygons":[["-70.606171 + 161.585763 -87.150539 8.62823 -72.552353 -93.797146 -64.221318 -152.276008 + -70.606171 161.585763"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1745.061.2017171221415.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1745.061.2017171221415.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1745.061.2017171221415.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1745.061.2017272144115.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1750.061.2017171222056.hdf","time_start":"2000-03-07T17:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089377","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T17:55:00.000Z","id":"G1462792757-LAADS","original_format":"ECHO10","granule_size":"24.750301361084","browse_flag":true,"polygons":[["-63.051697 + 118.323707 -70.848582 63.26497 -86.976812 -3.478162 -70.951672 161.770201 + -63.051697 118.323707"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1750.061.2017171222056.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1750.061.2017171222056.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1750.061.2017171222056.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1750.061.2017272143007.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1835.061.2017171222555.hdf","time_start":"2000-03-07T18:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089378","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T18:40:00.000Z","id":"G1462792764-LAADS","original_format":"ECHO10","granule_size":"20.1518983840942","browse_flag":true,"polygons":[["86.053665 + -157.152156 70.705559 -36.903133 65.759485 12.130901 74.474533 74.193087 86.053665 + -157.152156"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1835.061.2017171222555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1835.061.2017171222555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1835.061.2017171222555.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1835.061.2017272143331.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1840.061.2017171221427.hdf","time_start":"2000-03-07T18:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089058","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T18:45:00.000Z","id":"G1462792731-LAADS","original_format":"ECHO10","granule_size":"136.563675880432","browse_flag":true,"polygons":[["68.809604 + -128.279561 61.747039 -77.880059 71.123116 -36.882797 86.18938 -166.570387 + 68.809604 -128.279561"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1840.061.2017171221427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1840.061.2017171221427.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1840.061.2017171221427.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1840.061.2017272143824.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1845.061.2017171220940.hdf","time_start":"2000-03-07T18:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088415","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T18:50:00.000Z","id":"G1462792437-LAADS","original_format":"ECHO10","granule_size":"160.507269859314","browse_flag":true,"polygons":[["51.045751 + -127.981808 46.653823 -95.741196 62.028206 -78.336984 69.305759 -129.252366 + 51.045751 -127.981808"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1845.061.2017171220940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1845.061.2017171220940.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1845.061.2017171220940.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1845.061.2017272145016.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1850.061.2017171220953.hdf","time_start":"2000-03-07T18:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088416","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T18:55:00.000Z","id":"G1462792430-LAADS","original_format":"ECHO10","granule_size":"169.50080871582","browse_flag":true,"polygons":[["33.230758 + -129.780213 29.870737 -105.016539 46.890281 -96.262598 51.510336 -128.348579 + 33.230758 -129.780213"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1850.061.2017171220953.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1850.061.2017171220953.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1850.061.2017171220953.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1850.061.2017272145312.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1855.061.2017171220948.hdf","time_start":"2000-03-07T18:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088417","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T19:00:00.000Z","id":"G1462792441-LAADS","original_format":"ECHO10","granule_size":"155.868599891663","browse_flag":true,"polygons":[["15.420855 + -132.470568 12.425063 -110.916128 30.04046 -105.410022 33.614347 -129.948478 + 15.420855 -132.470568"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1855.061.2017171220948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1855.061.2017171220948.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1855.061.2017171220948.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1855.061.2017272145432.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1900.061.2017171222318.hdf","time_start":"2000-03-07T19:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088418","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T19:05:00.000Z","id":"G1462792438-LAADS","original_format":"ECHO10","granule_size":"152.401877403259","browse_flag":true,"polygons":[["-2.301459 + -135.989735 -5.332126 -115.128568 12.535 -111.103696 15.686223 -132.550832 + -2.301459 -135.989735"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1900.061.2017171222318.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1900.061.2017171222318.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1900.061.2017171222318.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1900.061.2017272144547.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1905.061.2017171221011.hdf","time_start":"2000-03-07T19:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088419","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T19:10:00.000Z","id":"G1462792443-LAADS","original_format":"ECHO10","granule_size":"153.664542198181","browse_flag":true,"polygons":[["-19.935036 + -140.717958 -23.333859 -118.283413 -5.265305 -115.063789 -2.179363 -136.013074 + -19.935036 -140.717958"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1905.061.2017171221011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1905.061.2017171221011.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1905.061.2017171221011.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1905.061.2017272144610.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1910.061.2017171221016.hdf","time_start":"2000-03-07T19:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088737","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T19:15:00.000Z","id":"G1462792598-LAADS","original_format":"ECHO10","granule_size":"153.740525245667","browse_flag":true,"polygons":[["-37.143581 + -147.678 -41.356512 -120.540052 -23.164311 -117.96561 -19.844934 -140.695168 + -37.143581 -147.678"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1910.061.2017171221016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1910.061.2017171221016.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1910.061.2017171221016.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1910.061.2017272145009.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1915.061.2017171220949.hdf","time_start":"2000-03-07T19:15:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088420","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T19:20:00.000Z","id":"G1462792436-LAADS","original_format":"ECHO10","granule_size":"166.05982208252","browse_flag":true,"polygons":[["-53.334067 + -159.671011 -59.287128 -121.527082 -41.044266 -120.008739 -37.07173 -147.597555 + -53.334067 -159.671011"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1915.061.2017171220949.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1915.061.2017171220949.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1915.061.2017171220949.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1915.061.2017272150337.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1920.061.2017171221436.hdf","time_start":"2000-03-07T19:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089379","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T19:25:00.000Z","id":"G1462792765-LAADS","original_format":"ECHO10","granule_size":"163.096730232239","browse_flag":true,"polygons":[["-66.570128 + 174.800511 -77.016918 -117.525993 -58.841502 -120.781044 -53.329844 -159.405179 + -66.570128 174.800511"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1920.061.2017171221436.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1920.061.2017171221436.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1920.061.2017171221436.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1920.061.2017272150042.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.1925.061.2017171222108.hdf","time_start":"2000-03-07T19:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089380","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T19:30:00.000Z","id":"G1462792766-LAADS","original_format":"ECHO10","granule_size":"122.355757713318","browse_flag":true,"polygons":[["-70.052609 + 125.212093 -84.298556 21.417064 -76.451049 -116.283179 -66.731228 175.330711 + -70.052609 125.212093"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1925.061.2017171222108.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.1925.061.2017171222108.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.1925.061.2017171222108.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.1925.061.2017272143839.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2015.061.2017171221352.hdf","time_start":"2000-03-07T20:15:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089059","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T20:20:00.000Z","id":"G1462792737-LAADS","original_format":"ECHO10","granule_size":"43.3911905288696","browse_flag":true,"polygons":[["82.496662 + -163.262733 69.729453 -73.313277 68.090777 -21.124001 78.374509 52.443681 + 82.496662 -163.262733"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2015.061.2017171221352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2015.061.2017171221352.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2015.061.2017171221352.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2015.061.2017272143242.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2020.061.2017171222723.hdf","time_start":"2000-03-07T20:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089695","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T20:25:00.000Z","id":"G1462792796-LAADS","original_format":"ECHO10","granule_size":"140.997069358826","browse_flag":true,"polygons":[["64.93815 + -152.537133 58.699222 -107.764633 70.114327 -73.508362 82.871053 -167.287152 + 64.93815 -152.537133"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2020.061.2017171222723.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2020.061.2017171222723.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2020.061.2017171222723.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2020.061.2017272143938.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2025.061.2017171221013.hdf","time_start":"2000-03-07T20:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088421","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T20:30:00.000Z","id":"G1462792442-LAADS","original_format":"ECHO10","granule_size":"157.877240180969","browse_flag":true,"polygons":[["47.062718 + -152.995767 42.994347 -123.013134 58.993581 -108.316573 65.429833 -153.319515 + 47.062718 -152.995767"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2025.061.2017171221013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2025.061.2017171221013.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2025.061.2017171221013.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2025.061.2017272145042.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2030.061.2017171222241.hdf","time_start":"2000-03-07T20:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088422","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T20:35:00.000Z","id":"G1462792440-LAADS","original_format":"ECHO10","granule_size":"167.116347312927","browse_flag":true,"polygons":[["29.244819 + -155.032478 26.007423 -131.256439 43.210154 -123.494291 47.514063 -153.303564 + 29.244819 -155.032478"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2030.061.2017171222241.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2030.061.2017171222241.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2030.061.2017171222241.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2030.061.2017272150056.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2035.061.2017171222232.hdf","time_start":"2000-03-07T20:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088738","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T20:40:00.000Z","id":"G1462792597-LAADS","original_format":"ECHO10","granule_size":"150.766735076904","browse_flag":true,"polygons":[["11.448574 + -157.898158 8.467723 -136.667134 26.157815 -131.585373 29.602305 -155.175922 + 11.448574 -157.898158"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2035.061.2017171222232.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2035.061.2017171222232.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2035.061.2017171222232.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2035.061.2017272145024.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2040.061.2017171221031.hdf","time_start":"2000-03-07T20:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088739","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T20:45:00.000Z","id":"G1462792604-LAADS","original_format":"ECHO10","granule_size":"149.772653579712","browse_flag":true,"polygons":[["-6.25186 + -161.638893 -9.332815 -140.655435 8.574156 -136.848095 11.681368 -157.965466 + -6.25186 -161.638893"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2040.061.2017171221031.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2040.061.2017171221031.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2040.061.2017171221031.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2040.061.2017272144134.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2045.061.2017171221029.hdf","time_start":"2000-03-07T20:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088423","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T20:50:00.000Z","id":"G1462792444-LAADS","original_format":"ECHO10","granule_size":"159.437695503235","browse_flag":true,"polygons":[["-23.836226 + -166.741173 -27.370031 -143.586025 -9.266586 -140.509905 -6.155148 -161.649757 + -23.836226 -166.741173"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2045.061.2017171221029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2045.061.2017171221029.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2045.061.2017171221029.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2045.061.2017272145208.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2050.061.2017171221038.hdf","time_start":"2000-03-07T20:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088740","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T20:55:00.000Z","id":"G1462792608-LAADS","original_format":"ECHO10","granule_size":"157.567187309265","browse_flag":true,"polygons":[["-40.885812 + -174.483784 -45.378595 -145.630275 -27.168891 -143.222826 -23.747443 -166.715657 + -40.885812 -174.483784"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2050.061.2017171221038.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2050.061.2017171221038.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2050.061.2017171221038.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2050.061.2017272145133.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2055.061.2017171222637.hdf","time_start":"2000-03-07T20:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089381","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T21:00:00.000Z","id":"G1462792763-LAADS","original_format":"ECHO10","granule_size":"156.961653709412","browse_flag":true,"polygons":[["-56.681983 + 171.584471 -63.278789 -146.114769 -45.03499 -145.045016 -40.824096 -174.371914 + -56.681983 171.584471"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2055.061.2017171222637.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2055.061.2017171222637.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2055.061.2017171222637.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2055.061.2017272145728.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2100.061.2017171222713.hdf","time_start":"2000-03-07T21:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089382","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T21:05:00.000Z","id":"G1462792762-LAADS","original_format":"ECHO10","granule_size":"161.033178329468","browse_flag":true,"polygons":[["-68.562884 + 140.814082 -80.88394 -137.678711 -62.803985 -145.249018 -56.702875 171.9081 + -68.562884 140.814082"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2100.061.2017171222713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2100.061.2017171222713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2100.061.2017171222713.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2100.061.2017272145656.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2105.061.2017171221421.hdf","time_start":"2000-03-07T21:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088741","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T21:10:00.000Z","id":"G1462792601-LAADS","original_format":"ECHO10","granule_size":"86.3034477233887","browse_flag":true,"polygons":[["-68.774354 + 89.53315 -80.573493 7.145997 -80.289377 -136.477454 -68.813609 141.376406 + -68.774354 89.53315"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2105.061.2017171221421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2105.061.2017171221421.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2105.061.2017171221421.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2105.061.2017272143248.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2155.061.2017171222753.hdf","time_start":"2000-03-07T21:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089383","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T22:00:00.000Z","id":"G1462792768-LAADS","original_format":"ECHO10","granule_size":"63.9823112487793","browse_flag":true,"polygons":[["78.644262 + 177.9935 68.044985 -108.343226 69.877553 -56.075077 82.188191 34.225029 78.644262 + 177.9935"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2155.061.2017171222753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2155.061.2017171222753.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2155.061.2017171222753.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2155.061.2017272143331.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2200.061.2017171221434.hdf","time_start":"2000-03-07T22:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089060","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T22:05:00.000Z","id":"G1462792736-LAADS","original_format":"ECHO10","granule_size":"150.429695129395","browse_flag":true,"polygons":[["60.965095 + -177.104348 55.403825 -136.902311 68.408557 -108.698469 79.085149 175.675887 + 60.965095 -177.104348"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2200.061.2017171221434.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2200.061.2017171221434.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2200.061.2017171221434.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2200.061.2017272144303.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2205.061.2017171221030.hdf","time_start":"2000-03-07T22:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088424","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T22:10:00.000Z","id":"G1462792447-LAADS","original_format":"ECHO10","granule_size":"153.53636264801","browse_flag":true,"polygons":[["43.164802 + -178.07282 39.348178 -149.909196 55.685616 -137.470227 61.452567 -177.706269 + 43.164802 -178.07282"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2205.061.2017171221030.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2205.061.2017171221030.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2205.061.2017171221030.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2205.061.2017272145739.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2210.061.2017171221600.hdf","time_start":"2000-03-07T22:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088742","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T22:15:00.000Z","id":"G1462792605-LAADS","original_format":"ECHO10","granule_size":"158.797085762024","browse_flag":true,"polygons":[["25.256434 + 179.675235 22.114463 -157.358125 39.548089 -150.358871 43.59731 -178.33834 + 25.256434 179.675235"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2210.061.2017171221600.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2210.061.2017171221600.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2210.061.2017171221600.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2210.061.2017272150248.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2215.061.2017171221028.hdf","time_start":"2000-03-07T22:15:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088425","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T22:20:00.000Z","id":"G1462792445-LAADS","original_format":"ECHO10","granule_size":"148.714923858643","browse_flag":true,"polygons":[["7.474855 + 176.631428 4.500148 -162.379663 22.254634 -157.660535 25.589103 179.553846 + 7.474855 176.631428"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2215.061.2017171221028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2215.061.2017171221028.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2215.061.2017171221028.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2215.061.2017272144920.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2220.061.2017171221041.hdf","time_start":"2000-03-07T22:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088426","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T22:25:00.000Z","id":"G1462792448-LAADS","original_format":"ECHO10","granule_size":"152.581621170044","browse_flag":true,"polygons":[["-10.217256 + 172.643363 -13.366965 -166.123067 4.595146 -162.504014 7.676908 176.577218 + -10.217256 172.643363"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2220.061.2017171221041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2220.061.2017171221041.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2220.061.2017171221041.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2220.061.2017272144838.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2225.061.2017171222404.hdf","time_start":"2000-03-07T22:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088743","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T22:30:00.000Z","id":"G1462792607-LAADS","original_format":"ECHO10","granule_size":"155.181198120117","browse_flag":true,"polygons":[["-27.717242 + 167.113967 -31.408183 -168.847798 -13.273628 -165.911398 -10.123585 172.650234 + -27.717242 167.113967"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2225.061.2017171222404.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2225.061.2017171222404.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2225.061.2017171222404.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2225.061.2017272145430.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2230.061.2017171221046.hdf","time_start":"2000-03-07T22:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088744","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T22:35:00.000Z","id":"G1462792602-LAADS","original_format":"ECHO10","granule_size":"159.269331932068","browse_flag":true,"polygons":[["-44.57493 + 158.426146 -49.398822 -170.652729 -31.174899 -168.437503 -27.629379 167.142571 + -44.57493 158.426146"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2230.061.2017171221046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2230.061.2017171221046.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2230.061.2017171221046.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2230.061.2017272145514.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2235.061.2017171221445.hdf","time_start":"2000-03-07T22:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089384","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T22:40:00.000Z","id":"G1462792767-LAADS","original_format":"ECHO10","granule_size":"166.655583381653","browse_flag":true,"polygons":[["-59.863918 + 142.044328 -67.263274 -170.436954 -49.024297 -170.009002 -44.525721 158.574459 + -59.863918 142.044328"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2235.061.2017171221445.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2235.061.2017171221445.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2235.061.2017171221445.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2235.061.2017272150200.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2240.061.2017171222722.hdf","time_start":"2000-03-07T22:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089696","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T22:45:00.000Z","id":"G1462792795-LAADS","original_format":"ECHO10","granule_size":"144.798420906067","browse_flag":true,"polygons":[["-69.945614 + 105.307863 -84.578525 -150.686707 -66.760615 -169.454684 -59.916284 142.43238 + -69.945614 105.307863"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2240.061.2017171222722.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2240.061.2017171222722.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2240.061.2017171222722.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2240.061.2017272144246.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2245.061.2017171222818.hdf","time_start":"2000-03-07T22:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089697","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T22:50:00.000Z","id":"G1462792794-LAADS","original_format":"ECHO10","granule_size":"60.0823059082031","browse_flag":true,"polygons":[["-66.846318 + 55.338775 -76.696001 -13.480839 -83.951861 -150.211101 -70.271296 105.793294 + -66.846318 55.338775"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2245.061.2017171222818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2245.061.2017171222818.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2245.061.2017171222818.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2245.061.2017272143241.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2335.061.2017171221024.hdf","time_start":"2000-03-07T23:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088427","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-07T23:40:00.000Z","id":"G1462792446-LAADS","original_format":"ECHO10","granule_size":"88.1985340118408","browse_flag":true,"polygons":[["74.717702 + 155.898216 65.800505 -141.75323 70.966489 -92.54031 85.670583 28.274177 74.717702 + 155.898216"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2335.061.2017171221024.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2335.061.2017171221024.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2335.061.2017171221024.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2335.061.2017272143540.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2340.061.2017171221034.hdf","time_start":"2000-03-07T23:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088745","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T23:45:00.000Z","id":"G1462792603-LAADS","original_format":"ECHO10","granule_size":"156.092800140381","browse_flag":true,"polygons":[["56.9834 + 158.156603 51.97366 -165.361909 66.15508 -142.236578 75.189676 154.374943 + 56.9834 158.156603"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2340.061.2017171221034.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2340.061.2017171221034.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2340.061.2017171221034.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2340.061.2017272145351.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2345.061.2017171221103.hdf","time_start":"2000-03-07T23:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715088746","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T23:50:00.000Z","id":"G1462792606-LAADS","original_format":"ECHO10","granule_size":"163.740525245667","browse_flag":true,"polygons":[["39.174945 + 156.786408 35.57105 -176.609066 52.233113 -165.906175 57.463822 157.661682 + 39.174945 156.786408"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2345.061.2017171221103.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2345.061.2017171221103.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2345.061.2017171221103.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2345.061.2017272150201.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2350.061.2017171221509.hdf","time_start":"2000-03-07T23:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089061","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-07T23:55:00.000Z","id":"G1462792735-LAADS","original_format":"ECHO10","granule_size":"155.879143714905","browse_flag":true,"polygons":[["21.35698 + 154.357951 18.285276 176.671318 35.755641 -177.026389 39.587749 156.56874 + 21.35698 154.357951"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2350.061.2017171221509.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2350.061.2017171221509.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2350.061.2017171221509.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2350.061.2017272145715.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000067.2355.061.2017171221505.hdf","time_start":"2000-03-07T23:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089062","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T00:00:00.000Z","id":"G1462792738-LAADS","original_format":"ECHO10","granule_size":"142.259643554688","browse_flag":true,"polygons":[["3.504573 + 151.114407 0.520613 171.967508 18.414983 176.402547 21.662191 154.249559 3.504573 + 151.114407"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2355.061.2017171221505.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000067.2355.061.2017171221505.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/067/MOD02QKM.A2000067.2355.061.2017171221505.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/067/MOBRGB.A2000067.2355.061.2017272144107.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0000.061.2017171222831.hdf","time_start":"2000-03-08T00:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089385","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T00:05:00.000Z","id":"G1462795400-LAADS","original_format":"ECHO10","granule_size":"154.086485862732","browse_flag":true,"polygons":[["-14.169971 + 146.850645 -17.406575 168.473594 0.602746 171.921445 3.675367 151.071217 -14.169971 + 146.850645"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0000.061.2017171222831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0000.061.2017171222831.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0000.061.2017171222831.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0000.061.2017272145252.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0005.061.2017171221501.hdf","time_start":"2000-03-08T00:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089386","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T00:10:00.000Z","id":"G1462795397-LAADS","original_format":"ECHO10","granule_size":"164.166977882385","browse_flag":true,"polygons":[["-31.569137 + 140.818963 -35.444662 165.935055 -17.283779 168.73046 -14.079584 146.872192 + -31.569137 140.818963"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0005.061.2017171221501.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0005.061.2017171221501.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0005.061.2017171221501.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0005.061.2017272145726.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0010.061.2017171222056.hdf","time_start":"2000-03-08T00:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089387","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T00:15:00.000Z","id":"G1462795402-LAADS","original_format":"ECHO10","granule_size":"163.071437835693","browse_flag":true,"polygons":[["-48.194763 + 130.984772 -53.413778 164.411064 -35.179449 166.393199 -31.484229 140.856603 + -48.194763 130.984772"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0010.061.2017171222056.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0010.061.2017171222056.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0010.061.2017171222056.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0010.061.2017272150019.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0015.061.2017171222553.hdf","time_start":"2000-03-08T00:15:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090016","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T00:20:00.000Z","id":"G1462795744-LAADS","original_format":"ECHO10","granule_size":"160.376839637756","browse_flag":true,"polygons":[["-62.818868 + 111.497404 -71.235168 165.614954 -53.009225 165.088531 -48.160332 131.173282 + -62.818868 111.497404"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0015.061.2017171222553.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0015.061.2017171222553.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0015.061.2017171222553.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0015.061.2017272150109.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0020.061.2017171223301.hdf","time_start":"2000-03-08T00:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089698","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T00:25:00.000Z","id":"G1462795567-LAADS","original_format":"ECHO10","granule_size":"130.893974304199","browse_flag":true,"polygons":[["-70.584423 + 68.699051 -87.311704 -131.34376 -70.710228 166.621489 -62.908363 111.952721 + -70.584423 68.699051"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0020.061.2017171223301.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0020.061.2017171223301.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0020.061.2017171223301.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0020.061.2017272143609.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0025.061.2017171223401.hdf","time_start":"2000-03-08T00:25:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090344","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T00:30:00.000Z","id":"G1462795867-LAADS","original_format":"ECHO10","granule_size":"34.7096014022827","browse_flag":true,"polygons":[["-64.378859 + 22.800869 -72.777897 -36.347469 -86.741422 -138.096184 -70.910934 68.990837 + -64.378859 22.800869"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0025.061.2017171223401.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0025.061.2017171223401.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0025.061.2017171223401.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0025.061.2017272143249.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0115.061.2017171221523.hdf","time_start":"2000-03-08T01:15:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089388","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T01:20:00.000Z","id":"G1462795398-LAADS","original_format":"ECHO10","granule_size":"118.239573478699","browse_flag":true,"polygons":[["70.764205 + 132.473875 63.136868 -173.641693 71.236419 -129.840416 87.10743 66.477287 + 70.764205 132.473875"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0115.061.2017171221523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0115.061.2017171221523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0115.061.2017171221523.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0115.061.2017272144011.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0120.061.2017171221540.hdf","time_start":"2000-03-08T01:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089389","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T01:25:00.000Z","id":"G1462795399-LAADS","original_format":"ECHO10","granule_size":"162.090809822083","browse_flag":true,"polygons":[["53.000448 + 133.290725 48.427537 166.754086 63.468791 -174.181036 71.250817 131.412834 + 53.000448 133.290725"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0120.061.2017171221540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0120.061.2017171221540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0120.061.2017171221540.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0120.061.2017272145117.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0125.061.2017171221519.hdf","time_start":"2000-03-08T01:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089063","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T01:30:00.000Z","id":"G1462795218-LAADS","original_format":"ECHO10","granule_size":"162.939242362976","browse_flag":true,"polygons":[["35.186935 + 131.592373 31.753538 156.902031 48.670088 166.228352 53.468495 132.861683 + 35.186935 131.592373"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0125.061.2017171221519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0125.061.2017171221519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0125.061.2017171221519.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0125.061.2017272150116.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0130.061.2017171221544.hdf","time_start":"2000-03-08T01:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089699","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T01:35:00.000Z","id":"G1462795562-LAADS","original_format":"ECHO10","granule_size":"160.678275108337","browse_flag":true,"polygons":[["17.372696 + 128.985714 14.352612 150.770369 31.924397 156.517452 35.577165 131.408463 + 17.372696 128.985714"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0130.061.2017171221544.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0130.061.2017171221544.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0130.061.2017171221544.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0130.061.2017272150825.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0135.061.2017171221507.hdf","time_start":"2000-03-08T01:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089064","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T01:40:00.000Z","id":"G1462795225-LAADS","original_format":"ECHO10","granule_size":"150.706751823425","browse_flag":true,"polygons":[["-0.367554 + 125.564796 -3.377778 146.391418 14.472643 150.535818 17.649705 128.896689 + -0.367554 125.564796"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0135.061.2017171221507.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0135.061.2017171221507.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0135.061.2017171221507.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0135.061.2017272144857.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0140.061.2017171221538.hdf","time_start":"2000-03-08T01:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089065","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T01:45:00.000Z","id":"G1462795223-LAADS","original_format":"ECHO10","granule_size":"169.733493804932","browse_flag":true,"polygons":[["-18.104135 + 120.972722 -21.446398 143.10701 -3.306624 146.418876 -0.228526 125.530675 + -18.104135 120.972722"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0140.061.2017171221538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0140.061.2017171221538.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0140.061.2017171221538.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0140.061.2017272145717.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0145.061.2017171221513.hdf","time_start":"2000-03-08T01:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089390","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T01:50:00.000Z","id":"G1462795408-LAADS","original_format":"ECHO10","granule_size":"160.984665870667","browse_flag":true,"polygons":[["-35.380126 + 114.335572 -39.475166 140.766911 -21.292129 143.414374 -18.01413 120.996768 + -35.380126 114.335572"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0145.061.2017171221513.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0145.061.2017171221513.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0145.061.2017171221513.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0145.061.2017272144918.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0150.061.2017171221512.hdf","time_start":"2000-03-08T01:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089066","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T01:55:00.000Z","id":"G1462795220-LAADS","original_format":"ECHO10","granule_size":"165.657591819763","browse_flag":true,"polygons":[["-51.723226 + 103.101553 -57.419505 139.585957 -39.178314 141.273579 -35.302047 114.397467 + -51.723226 103.101553"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0150.061.2017171221512.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0150.061.2017171221512.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0150.061.2017171221512.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0150.061.2017272150644.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0155.061.2017171221515.hdf","time_start":"2000-03-08T01:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089700","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T02:00:00.000Z","id":"G1462795564-LAADS","original_format":"ECHO10","granule_size":"152.391809463501","browse_flag":true,"polygons":[["-65.468491 + 79.710023 -75.187918 142.335918 -56.987543 140.26722 -51.709514 103.343826 + -65.468491 79.710023"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0155.061.2017171221515.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0155.061.2017171221515.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0155.061.2017171221515.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0155.061.2017272145058.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0200.061.2017171221514.hdf","time_start":"2000-03-08T02:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089391","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T02:05:00.000Z","id":"G1462795403-LAADS","original_format":"ECHO10","granule_size":"122.007452011108","browse_flag":true,"polygons":[["-70.409833 + 31.824407 -85.861986 -89.1162 -74.629638 143.647644 -65.602208 80.225727 -70.409833 + 31.824407"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0200.061.2017171221514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0200.061.2017171221514.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0200.061.2017171221514.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0200.061.2017272143739.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0250.061.2017171222620.hdf","time_start":"2000-03-08T02:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089067","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T02:55:00.000Z","id":"G1462795224-LAADS","original_format":"ECHO10","granule_size":"29.0730638504028","browse_flag":true,"polygons":[["84.240246 + 92.07682 70.286467 -166.856868 67.055914 -115.782247 76.552998 -48.101183 + 84.240246 92.07682"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0250.061.2017171222620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0250.061.2017171222620.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0250.061.2017171222620.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0250.061.2017272143329.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0255.061.2017171221555.hdf","time_start":"2000-03-08T02:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089392","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T03:00:00.000Z","id":"G1462795404-LAADS","original_format":"ECHO10","granule_size":"139.237751960754","browse_flag":true,"polygons":[["66.801898 + 108.406939 60.164662 155.767659 70.648436 -166.925106 84.539287 86.34513 66.801898 + 108.406939"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0255.061.2017171221555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0255.061.2017171221555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0255.061.2017171221555.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0255.061.2017272144427.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0300.061.2017171221524.hdf","time_start":"2000-03-08T03:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089068","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T03:05:00.000Z","id":"G1462795230-LAADS","original_format":"ECHO10","granule_size":"165.396680831909","browse_flag":true,"polygons":[["49.020244 + 108.31816 44.800031 139.313442 60.475989 155.200573 67.293032 107.619449 49.020244 + 108.31816"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0300.061.2017171221524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0300.061.2017171221524.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0300.061.2017171221524.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0300.061.2017272145005.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0305.061.2017171221525.hdf","time_start":"2000-03-08T03:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089069","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T03:10:00.000Z","id":"G1462795229-LAADS","original_format":"ECHO10","granule_size":"153.242101669312","browse_flag":true,"polygons":[["31.204164 + 106.362265 27.906983 130.591792 45.024933 138.816233 49.473476 107.954666 + 31.204164 106.362265"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0305.061.2017171221525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0305.061.2017171221525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0305.061.2017171221525.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0305.061.2017272144700.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0310.061.2017171221848.hdf","time_start":"2000-03-08T03:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089701","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T03:15:00.000Z","id":"G1462795563-LAADS","original_format":"ECHO10","granule_size":"164.314119338989","browse_flag":true,"polygons":[["13.399358 + 103.573174 10.410201 124.957327 28.065003 130.239761 31.569743 106.197401 + 13.399358 103.573174"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0310.061.2017171221848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0310.061.2017171221848.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0310.061.2017171221848.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0310.061.2017272145512.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0315.061.2017171221548.hdf","time_start":"2000-03-08T03:15:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089070","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T03:20:00.000Z","id":"G1462795227-LAADS","original_format":"ECHO10","granule_size":"157.582253456116","browse_flag":true,"polygons":[["-4.311333 + 99.943711 -7.364058 120.848261 10.520813 124.758064 13.646332 103.499239 -4.311333 + 99.943711"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0315.061.2017171221548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0315.061.2017171221548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0315.061.2017171221548.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0315.061.2017272144701.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0320.061.2017171221546.hdf","time_start":"2000-03-08T03:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089393","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T03:25:00.000Z","id":"G1462795412-LAADS","original_format":"ECHO10","granule_size":"155.332103729248","browse_flag":true,"polygons":[["-21.926425 + 95.03013 -25.388972 117.799508 -7.30104 120.946319 -4.206067 99.925465 -21.926425 + 95.03013"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0320.061.2017171221546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0320.061.2017171221546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0320.061.2017171221546.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0320.061.2017272145700.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0325.061.2017171221545.hdf","time_start":"2000-03-08T03:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089394","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T03:30:00.000Z","id":"G1462795410-LAADS","original_format":"ECHO10","granule_size":"149.661370277405","browse_flag":true,"polygons":[["-39.141509 + 87.645597 -43.495574 115.652521 -25.204863 118.158123 -21.835936 95.054713 + -39.141509 87.645597"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0325.061.2017171221545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0325.061.2017171221545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0325.061.2017171221545.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0325.061.2017272145348.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0330.061.2017171221605.hdf","time_start":"2000-03-08T03:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089395","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T03:35:00.000Z","id":"G1462795401-LAADS","original_format":"ECHO10","granule_size":"159.860754013062","browse_flag":true,"polygons":[["-55.133844 + 74.674954 -61.410492 114.910504 -43.165968 116.209584 -39.073627 87.739757 + -55.133844 74.674954"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0330.061.2017171221605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0330.061.2017171221605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0330.061.2017171221605.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0330.061.2017272150014.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0335.061.2017171223450.hdf","time_start":"2000-03-08T03:35:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090345","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T03:40:00.000Z","id":"G1462795871-LAADS","original_format":"ECHO10","granule_size":"148.791948318481","browse_flag":true,"polygons":[["-67.701936 + 46.470133 -79.092867 120.63624 -60.951677 115.636646 -55.14425 74.974024 -67.701936 + 46.470133"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0335.061.2017171223450.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0335.061.2017171223450.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0335.061.2017171223450.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0335.061.2017272144950.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0340.061.2017171222438.hdf","time_start":"2000-03-08T03:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089702","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T03:45:00.000Z","id":"G1462795571-LAADS","original_format":"ECHO10","granule_size":"96.0761032104492","browse_flag":true,"polygons":[["-69.459134 + -4.388781 -82.347565 -95.383079 -78.502738 122.158744 -67.903851 47.029064 + -69.459134 -4.388781"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0340.061.2017171222438.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0340.061.2017171222438.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0340.061.2017171222438.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0340.061.2017272143615.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0430.061.2017171222435.hdf","time_start":"2000-03-08T04:30:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090017","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T04:35:00.000Z","id":"G1462795738-LAADS","original_format":"ECHO10","granule_size":"53.972469329834","browse_flag":true,"polygons":[["80.4639 + 76.955806 68.917711 157.405441 69.121462 -149.945914 80.417913 -68.391188 + 80.4639 76.955806"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0430.061.2017171222435.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0430.061.2017171222435.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0430.061.2017171222435.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0430.061.2017272143506.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0435.061.2017171223601.hdf","time_start":"2000-03-08T04:35:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090018","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T04:40:00.000Z","id":"G1462795736-LAADS","original_format":"ECHO10","granule_size":"149.992169380188","browse_flag":true,"polygons":[["62.830262 + 83.957697 56.967909 126.196752 69.283389 157.128976 80.880458 74.013408 62.830262 + 83.957697"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0435.061.2017171223601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0435.061.2017171223601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0435.061.2017171223601.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0435.061.2017272144601.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0440.061.2017171221605.hdf","time_start":"2000-03-08T04:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089703","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T04:45:00.000Z","id":"G1462795568-LAADS","original_format":"ECHO10","granule_size":"164.788844108582","browse_flag":true,"polygons":[["45.034006 + 83.270621 41.110243 112.200462 57.26658 125.602124 63.322453 83.369984 45.034006 + 83.270621"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0440.061.2017171221605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0440.061.2017171221605.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0440.061.2017171221605.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0440.061.2017272144658.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0445.061.2017171221530.hdf","time_start":"2000-03-08T04:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089071","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T04:50:00.000Z","id":"G1462795228-LAADS","original_format":"ECHO10","granule_size":"164.061627388","browse_flag":true,"polygons":[["27.217035 + 81.077576 24.03815 104.392267 41.322253 111.717513 45.475363 82.93993 27.217035 + 81.077576"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0445.061.2017171221530.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0445.061.2017171221530.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0445.061.2017171221530.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0445.061.2017272144816.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0450.061.2017171221537.hdf","time_start":"2000-03-08T04:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089396","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T04:55:00.000Z","id":"G1462795406-LAADS","original_format":"ECHO10","granule_size":"142.045742034912","browse_flag":true,"polygons":[["9.424194 + 78.120332 6.457313 99.187104 24.183289 104.0743 27.563094 80.943775 9.424194 + 78.120332"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0450.061.2017171221537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0450.061.2017171221537.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0450.061.2017171221537.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0450.061.2017272144210.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0455.061.2017171221547.hdf","time_start":"2000-03-08T04:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089704","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T05:00:00.000Z","id":"G1462795566-LAADS","original_format":"ECHO10","granule_size":"160.474638938904","browse_flag":true,"polygons":[["-8.269693 + 74.256492 -11.381975 95.350014 6.55382 99.058287 9.644106 78.058403 -8.269693 + 74.256492"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0455.061.2017171221547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0455.061.2017171221547.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0455.061.2017171221547.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0455.061.2017272145726.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0500.061.2017171222601.hdf","time_start":"2000-03-08T05:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089072","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T05:05:00.000Z","id":"G1462795231-LAADS","original_format":"ECHO10","granule_size":"161.795943260193","browse_flag":true,"polygons":[["-25.812398 + 68.946705 -29.422246 92.536395 -11.30302 95.539934 -8.174295 74.255539 -25.812398 + 68.946705"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0500.061.2017171222601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0500.061.2017171222601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0500.061.2017171222601.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0500.061.2017272145333.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0505.061.2017171221610.hdf","time_start":"2000-03-08T05:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089705","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T05:10:00.000Z","id":"G1462795569-LAADS","original_format":"ECHO10","granule_size":"168.353099822998","browse_flag":true,"polygons":[["-42.768092 + 60.747409 -47.421015 90.611188 -29.204361 92.922403 -25.723825 68.973617 -42.768092 + 60.747409"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0505.061.2017171221610.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0505.061.2017171221610.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0505.061.2017171221610.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0505.061.2017272150637.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0510.061.2017171222548.hdf","time_start":"2000-03-08T05:10:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090019","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T05:15:00.000Z","id":"G1462795740-LAADS","original_format":"ECHO10","granule_size":"164.144377708435","browse_flag":true,"polygons":[["-58.393542 + 45.54076 -65.392347 90.459712 -47.061387 91.231178 -42.712826 60.878251 -58.393542 + 45.54076"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0510.061.2017171222548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0510.061.2017171222548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0510.061.2017171222548.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0510.061.2017272150543.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0515.061.2017171223111.hdf","time_start":"2000-03-08T05:15:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090695","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T05:20:00.000Z","id":"G1462795948-LAADS","original_format":"ECHO10","granule_size":"144.734454154968","browse_flag":true,"polygons":[["-69.384108 + 11.668127 -82.900469 102.925889 -64.905769 91.248741 -58.431272 45.900042 + -69.384108 11.668127"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0515.061.2017171223111.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0515.061.2017171223111.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0515.061.2017171223111.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0515.061.2017272144831.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0520.061.2017171223054.hdf","time_start":"2000-03-08T05:20:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090346","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T05:25:00.000Z","id":"G1462795883-LAADS","original_format":"ECHO10","granule_size":"71.6635427474976","browse_flag":true,"polygons":[["-67.783675 + -39.226576 -78.534453 -113.968862 -82.268369 104.484957 -69.627959 12.175225 + -67.783675 -39.226576"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0520.061.2017171223054.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0520.061.2017171223054.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0520.061.2017171223054.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0520.061.2017272143541.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0610.061.2017171223353.hdf","time_start":"2000-03-08T06:10:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090020","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T06:15:00.000Z","id":"G1462795742-LAADS","original_format":"ECHO10","granule_size":"80.3697214126587","browse_flag":true,"polygons":[["76.567861 + 55.994413 66.917592 123.248799 70.55217 174.258351 84.111167 -82.215744 76.567861 + 55.994413"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0610.061.2017171223353.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0610.061.2017171223353.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0610.061.2017171223353.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0610.061.2017272143715.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0615.061.2017171222855.hdf","time_start":"2000-03-08T06:15:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090021","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T06:20:00.000Z","id":"G1462795746-LAADS","original_format":"ECHO10","granule_size":"156.502118110657","browse_flag":true,"polygons":[["58.857703 + 59.298112 53.605878 97.434671 67.278602 122.816904 77.028929 54.171291 58.857703 + 59.298112"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0615.061.2017171222855.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0615.061.2017171222855.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0615.061.2017171222855.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0615.061.2017272144540.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0620.061.2017171221621.hdf","time_start":"2000-03-08T06:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089706","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T06:25:00.000Z","id":"G1462795574-LAADS","original_format":"ECHO10","granule_size":"160.068079948425","browse_flag":true,"polygons":[["41.050622 + 58.101972 37.365125 85.37809 53.888313 96.836846 59.343133 58.749835 41.050622 + 58.101972"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0620.061.2017171221621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0620.061.2017171221621.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0620.061.2017171221621.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0620.061.2017272144541.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0625.061.2017171221543.hdf","time_start":"2000-03-08T06:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089397","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T06:30:00.000Z","id":"G1462795409-LAADS","original_format":"ECHO10","granule_size":"155.49449634552","browse_flag":true,"polygons":[["23.23224 + 55.763863 20.140488 78.342934 37.558434 84.937749 41.478947 57.867231 23.23224 + 55.763863"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0625.061.2017171221543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0625.061.2017171221543.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0625.061.2017171221543.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0625.061.2017272143727.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0630.061.2017171222825.hdf","time_start":"2000-03-08T06:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089398","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T06:35:00.000Z","id":"G1462795411-LAADS","original_format":"ECHO10","granule_size":"138.543147087097","browse_flag":true,"polygons":[["5.463085 + 52.623794 2.486268 73.538708 20.267811 78.092739 23.553718 55.646265 5.463085 + 52.623794"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0630.061.2017171222825.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0630.061.2017171222825.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0630.061.2017171222825.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0630.061.2017272145014.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0635.061.2017171221557.hdf","time_start":"2000-03-08T06:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089399","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T06:40:00.000Z","id":"G1462795405-LAADS","original_format":"ECHO10","granule_size":"149.28537940979","browse_flag":true,"polygons":[["-12.21921 + 48.501371 -15.411532 69.931059 2.573534 73.45972 5.649586 52.575203 -12.21921 + 48.501371"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0635.061.2017171221557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0635.061.2017171221557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0635.061.2017171221557.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0635.061.2017272144449.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0640.061.2017171222221.hdf","time_start":"2000-03-08T06:40:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089707","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T06:45:00.000Z","id":"G1462795572-LAADS","original_format":"ECHO10","granule_size":"146.909499168396","browse_flag":true,"polygons":[["-29.669443 + 42.732397 -33.449606 67.300357 -15.302718 70.16347 -12.127686 48.518878 -29.669443 + 42.732397"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0640.061.2017171222221.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0640.061.2017171222221.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0640.061.2017171222221.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0640.061.2017272144832.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0645.061.2017171223053.hdf","time_start":"2000-03-08T06:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089708","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T06:50:00.000Z","id":"G1462795577-LAADS","original_format":"ECHO10","granule_size":"157.633321762085","browse_flag":true,"polygons":[["-46.413259 + 33.491677 -51.428424 65.632488 -33.199978 67.732723 -29.581976 42.762568 -46.413259 + 33.491677"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0645.061.2017171223053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0645.061.2017171223053.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0645.061.2017171223053.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0645.061.2017272145953.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0650.061.2017171221626.hdf","time_start":"2000-03-08T06:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089709","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T06:55:00.000Z","id":"G1462795570-LAADS","original_format":"ECHO10","granule_size":"165.141180992126","browse_flag":true,"polygons":[["-61.389882 + 15.637762 -69.272351 66.246842 -51.038585 66.261668 -46.3725 33.663531 -61.389882 + 15.637762"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0650.061.2017171221626.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0650.061.2017171221626.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0650.061.2017171221626.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0650.061.2017272150519.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0655.061.2017171222519.hdf","time_start":"2000-03-08T06:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089710","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T07:00:00.000Z","id":"G1462795576-LAADS","original_format":"ECHO10","granule_size":"143.426718711853","browse_flag":true,"polygons":[["-70.382529 + -24.47266 -86.312941 100.671323 -68.760156 67.215336 -61.45953 16.064212 -70.382529 + -24.47266"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0655.061.2017171222519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0655.061.2017171222519.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0655.061.2017171222519.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0655.061.2017272144511.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0700.061.2017171222439.hdf","time_start":"2000-03-08T07:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089711","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T07:05:00.000Z","id":"G1462795575-LAADS","original_format":"ECHO10","granule_size":"46.2561702728271","browse_flag":true,"polygons":[["-65.576943 + -72.532673 -74.636848 -136.013814 -85.640304 99.94678 -70.684147 -24.085946 + -65.576943 -72.532673"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0700.061.2017171222439.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0700.061.2017171222439.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0700.061.2017171222439.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0700.061.2017272143555.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0750.061.2017171221555.hdf","time_start":"2000-03-08T07:50:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089712","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T07:55:00.000Z","id":"G1462795573-LAADS","original_format":"ECHO10","granule_size":"111.580239295959","browse_flag":true,"polygons":[["72.630326 + 33.073353 64.438017 90.681124 71.216108 137.250715 86.948047 -68.922925 72.630326 + 33.073353"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0750.061.2017171221555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0750.061.2017171221555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0750.061.2017171221555.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0750.061.2017272144034.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0755.061.2017171222358.hdf","time_start":"2000-03-08T07:55:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089713","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T08:00:00.000Z","id":"G1462795580-LAADS","original_format":"ECHO10","granule_size":"156.680758476257","browse_flag":true,"polygons":[["54.878845 + 34.468823 50.116501 69.294062 64.786311 90.151429 73.111124 31.790684 54.878845 + 34.468823"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0755.061.2017171222358.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0755.061.2017171222358.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0755.061.2017171222358.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0755.061.2017272145713.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0800.061.2017171221626.hdf","time_start":"2000-03-08T08:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089714","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T08:05:00.000Z","id":"G1462795579-LAADS","original_format":"ECHO10","granule_size":"163.928196907043","browse_flag":true,"polygons":[["37.069317 + 32.956582 33.562217 58.830853 50.364307 68.766509 55.35572 34.056768 37.069317 + 32.956582"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0800.061.2017171221626.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0800.061.2017171221626.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0800.061.2017171221626.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0800.061.2017272145339.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0805.061.2017171221557.hdf","time_start":"2000-03-08T08:05:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089715","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T08:10:00.000Z","id":"G1462795578-LAADS","original_format":"ECHO10","granule_size":"159.111180305481","browse_flag":true,"polygons":[["19.255617 + 30.411493 16.218453 52.413909 33.745041 58.407498 37.472456 32.734084 19.255617 + 30.411493"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0805.061.2017171221557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0805.061.2017171221557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0805.061.2017171221557.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0805.061.2017272144333.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0810.061.2017171221640.hdf","time_start":"2000-03-08T08:10:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089400","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T08:15:00.000Z","id":"G1462795407-LAADS","original_format":"ECHO10","granule_size":"160.876171112061","browse_flag":true,"polygons":[["1.504889 + 27.092913 -1.491242 47.925137 16.33745 52.191522 19.545335 30.322898 1.504889 + 27.092913"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0810.061.2017171221640.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0810.061.2017171221640.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0810.061.2017171221640.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0810.061.2017272144241.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0815.061.2017171223525.hdf","time_start":"2000-03-08T08:15:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090022","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T08:20:00.000Z","id":"G1462795743-LAADS","original_format":"ECHO10","granule_size":"170.26840877533","browse_flag":true,"polygons":[["-16.159129 + 22.689331 -19.444442 44.549265 -1.414332 47.914684 1.656216 27.065099 -16.159129 + 22.689331"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0815.061.2017171223525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0815.061.2017171223525.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0815.061.2017171223525.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0815.061.2017272145510.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0820.061.2017171222601.hdf","time_start":"2000-03-08T08:20:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089716","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T08:25:00.000Z","id":"G1462795583-LAADS","original_format":"ECHO10","granule_size":"163.605086326599","browse_flag":true,"polygons":[["-33.497463 + 16.362048 -37.478354 42.105531 -19.304995 44.826476 -16.070052 22.706751 -33.497463 + 16.362048"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0820.061.2017171222601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0820.061.2017171222601.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0820.061.2017171222601.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0820.061.2017272145258.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0825.061.2017171222602.hdf","time_start":"2000-03-08T08:25:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090023","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T08:30:00.000Z","id":"G1462795739-LAADS","original_format":"ECHO10","granule_size":"162.24547290802","browse_flag":true,"polygons":[["-49.982902 + 5.845249 -55.431659 40.744021 -37.194296 42.584997 -33.411538 16.396295 -49.982902 + 5.845249"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0825.061.2017171222602.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0825.061.2017171222602.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0825.061.2017171222602.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0825.061.2017272150249.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0830.061.2017171222523.hdf","time_start":"2000-03-08T08:30:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090024","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T08:35:00.000Z","id":"G1462795753-LAADS","original_format":"ECHO10","granule_size":"163.208456039429","browse_flag":true,"polygons":[["-64.196542 + -15.494269 -73.230177 42.541609 -55.013514 41.380172 -49.959372 6.06321 -64.196542 + -15.494269"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0830.061.2017171222523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0830.061.2017171222523.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0830.061.2017171222523.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0830.061.2017272150355.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0835.061.2017171222632.hdf","time_start":"2000-03-08T08:35:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090025","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T08:40:00.000Z","id":"G1462795747-LAADS","original_format":"ECHO10","granule_size":"136.62212562561","browse_flag":true,"polygons":[["-70.59988 + -61.052232 -87.141746 146.954001 -72.689608 43.716755 -64.307116 -15.000318 + -70.59988 -61.052232"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0835.061.2017171222632.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0835.061.2017171222632.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0835.061.2017171222632.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0835.061.2017272144008.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0840.061.2017171222456.hdf","time_start":"2000-03-08T08:40:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090026","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T08:45:00.000Z","id":"G1462795749-LAADS","original_format":"ECHO10","granule_size":"23.2346343994141","browse_flag":true,"polygons":[["-62.952607 + -104.378985 -70.707883 -159.305442 -86.921608 134.719808 -70.946843 -60.866668 + -62.952607 -104.378985"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0840.061.2017171222456.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0840.061.2017171222456.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0840.061.2017171222456.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0840.061.2017272143637.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0925.061.2017171221558.hdf","time_start":"2000-03-08T09:25:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089401","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T09:30:00.000Z","id":"G1462795415-LAADS","original_format":"ECHO10","granule_size":"21.8228883743286","browse_flag":true,"polygons":[["85.938874 + -18.308195 70.688421 100.158116 65.855925 149.370643 74.618396 -148.234703 + 85.938874 -18.308195"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0925.061.2017171221558.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0925.061.2017171221558.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0925.061.2017171221558.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0925.061.2017272143659.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0930.061.2017171222546.hdf","time_start":"2000-03-08T09:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089717","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T09:35:00.000Z","id":"G1462795582-LAADS","original_format":"ECHO10","granule_size":"140.091260910034","browse_flag":true,"polygons":[["68.669958 + 9.266336 61.599057 59.514041 71.043185 100.205196 86.087653 -27.388275 68.669958 + 9.266336"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0930.061.2017171222546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0930.061.2017171222546.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0930.061.2017171222546.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0930.061.2017272144940.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0935.061.2017171223006.hdf","time_start":"2000-03-08T09:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089718","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T09:40:00.000Z","id":"G1462795588-LAADS","original_format":"ECHO10","granule_size":"163.98285484314","browse_flag":true,"polygons":[["50.898288 + 9.529394 46.524141 41.659906 61.924015 58.946986 69.161841 8.307903 50.898288 + 9.529394"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0935.061.2017171223006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0935.061.2017171223006.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0935.061.2017171223006.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0935.061.2017272145723.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0940.061.2017171222133.hdf","time_start":"2000-03-08T09:40:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089719","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T09:45:00.000Z","id":"G1462795585-LAADS","original_format":"ECHO10","granule_size":"153.28150177002","browse_flag":true,"polygons":[["33.083834 + 7.717538 29.727042 32.444083 46.753688 41.159609 51.362099 9.162322 33.083834 + 7.717538"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0940.061.2017171222133.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0940.061.2017171222133.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0940.061.2017171222133.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0940.061.2017272145157.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0945.061.2017171221634.hdf","time_start":"2000-03-08T09:45:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089402","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T09:50:00.000Z","id":"G1462795414-LAADS","original_format":"ECHO10","granule_size":"157.993934631348","browse_flag":true,"polygons":[["15.276359 + 5.024871 12.276394 26.579091 29.892513 32.070622 33.464096 7.555191 15.276359 + 5.024871"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0945.061.2017171221634.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0945.061.2017171221634.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0945.061.2017171221634.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0945.061.2017272143834.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0950.061.2017171221633.hdf","time_start":"2000-03-08T09:50:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089720","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T09:55:00.000Z","id":"G1462795581-LAADS","original_format":"ECHO10","granule_size":"157.288941383362","browse_flag":true,"polygons":[["-2.445998 + 1.489326 -5.476972 22.345425 12.391258 26.362315 15.539117 4.936947 -2.445998 + 1.489326"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0950.061.2017171221633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0950.061.2017171221633.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0950.061.2017171221633.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0950.061.2017272144554.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.0955.061.2017171222914.hdf","time_start":"2000-03-08T09:55:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089721","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T10:00:00.000Z","id":"G1462795587-LAADS","original_format":"ECHO10","granule_size":"161.814112663269","browse_flag":true,"polygons":[["-20.076659 + -3.254225 -23.477753 19.180073 -5.408495 22.397083 -2.323341 1.464707 -20.076659 + -3.254225"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0955.061.2017171222914.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.0955.061.2017171222914.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.0955.061.2017171222914.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.0955.061.2017272145908.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1000.061.2017171221645.hdf","time_start":"2000-03-08T10:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089403","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T10:05:00.000Z","id":"G1462795419-LAADS","original_format":"ECHO10","granule_size":"167.618379592896","browse_flag":true,"polygons":[["-37.279997 + -10.238826 -41.500383 16.960527 -23.310759 19.52906 -19.984896 -3.228338 -37.279997 + -10.238826"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1000.061.2017171221645.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1000.061.2017171221645.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1000.061.2017171221645.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1000.061.2017272151923.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1005.061.2017171222557.hdf","time_start":"2000-03-08T10:05:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090027","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T10:10:00.000Z","id":"G1462795745-LAADS","original_format":"ECHO10","granule_size":"162.589165687561","browse_flag":true,"polygons":[["-53.455855 + -22.297906 -59.431896 15.983102 -41.189221 17.489413 -37.207482 -10.159151 + -53.455855 -22.297906"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1005.061.2017171222557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1005.061.2017171222557.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1005.061.2017171222557.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1005.061.2017272151044.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1010.061.2017171222553.hdf","time_start":"2000-03-08T10:10:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090028","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T10:15:00.000Z","id":"G1462795752-LAADS","original_format":"ECHO10","granule_size":"158.88844871521","browse_flag":true,"polygons":[["-66.650444 + -47.996951 -77.16426 19.922061 -58.986516 16.661104 -53.45408 -22.025789 -66.650444 + -47.996951"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1010.061.2017171222553.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1010.061.2017171222553.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1010.061.2017171222553.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1010.061.2017272150732.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1015.061.2017171222625.hdf","time_start":"2000-03-08T10:15:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089722","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T10:20:00.000Z","id":"G1462795584-LAADS","original_format":"ECHO10","granule_size":"113.717574119568","browse_flag":true,"polygons":[["-70.014821 + -97.695271 -84.171512 159.529708 -76.591094 21.346474 -66.810375 -47.458461 + -70.014821 -97.695271"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1015.061.2017171222625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1015.061.2017171222625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1015.061.2017171222625.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1015.061.2017272143916.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1105.061.2017171222535.hdf","time_start":"2000-03-08T11:05:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090029","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T11:10:00.000Z","id":"G1462795748-LAADS","original_format":"ECHO10","granule_size":"43.4736442565918","browse_flag":true,"polygons":[["82.357791 + -25.302835 69.679397 63.783165 68.169781 116.039704 78.523273 -169.950046 + 82.357791 -25.302835"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1105.061.2017171222535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1105.061.2017171222535.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1105.061.2017171222535.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1105.061.2017272143726.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1110.061.2017171223359.hdf","time_start":"2000-03-08T11:10:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090030","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T11:15:00.000Z","id":"G1462795750-LAADS","original_format":"ECHO10","granule_size":"156.262798309326","browse_flag":true,"polygons":[["64.7926 + -15.004117 58.56822 29.597251 70.044647 63.604374 82.731873 -29.288139 64.7926 + -15.004117"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1110.061.2017171223359.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1110.061.2017171223359.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1110.061.2017171223359.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1110.061.2017272145947.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1115.061.2017171221647.hdf","time_start":"2000-03-08T11:15:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089723","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T11:20:00.000Z","id":"G1462795593-LAADS","original_format":"ECHO10","granule_size":"157.949213027954","browse_flag":true,"polygons":[["46.913848 + -15.497344 42.853524 14.421604 58.86877 29.02755 65.279768 -15.79263 46.913848 + -15.497344"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1115.061.2017171221647.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1115.061.2017171221647.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1115.061.2017171221647.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1115.061.2017272145730.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1120.061.2017171223049.hdf","time_start":"2000-03-08T11:20:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089724","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T11:25:00.000Z","id":"G1462795589-LAADS","original_format":"ECHO10","granule_size":"149.208031654358","browse_flag":true,"polygons":[["29.097403 + -17.540183 25.861939 6.209942 43.06898 13.940455 47.363803 -15.80091 29.097403 + -17.540183"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1120.061.2017171223049.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1120.061.2017171223049.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1120.061.2017171223049.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1120.061.2017272144733.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1125.061.2017171221707.hdf","time_start":"2000-03-08T11:25:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089725","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T11:30:00.000Z","id":"G1462795591-LAADS","original_format":"ECHO10","granule_size":"152.81324005127","browse_flag":true,"polygons":[["11.300438 + -20.415475 8.324367 0.79203 26.017317 5.858037 29.455059 -17.685746 11.300438 + -20.415475"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1125.061.2017171221707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1125.061.2017171221707.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1125.061.2017171221707.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1125.061.2017272143841.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1130.061.2017171221625.hdf","time_start":"2000-03-08T11:30:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089404","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T11:35:00.000Z","id":"G1462795418-LAADS","original_format":"ECHO10","granule_size":"146.480602264404","browse_flag":true,"polygons":[["-6.398476 + -24.162585 -9.479454 -3.179337 8.428494 0.620874 11.534215 -20.479313 -6.398476 + -24.162585"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1130.061.2017171221625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1130.061.2017171221625.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1130.061.2017171221625.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1130.061.2017272145721.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1135.061.2017171221702.hdf","time_start":"2000-03-08T11:35:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089405","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T11:40:00.000Z","id":"G1462795413-LAADS","original_format":"ECHO10","granule_size":"143.538021087646","browse_flag":true,"polygons":[["-23.978827 + -29.281397 -27.518216 -6.09481 -9.413785 -3.023354 -6.300962 -24.1739 -23.978827 + -29.281397"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1135.061.2017171221702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1135.061.2017171221702.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1135.061.2017171221702.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1135.061.2017272145026.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1140.061.2017171222714.hdf","time_start":"2000-03-08T11:40:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090347","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T11:45:00.000Z","id":"G1462795880-LAADS","original_format":"ECHO10","granule_size":"147.651096343994","browse_flag":true,"polygons":[["-41.022217 + -37.053966 -45.525853 -8.129894 -27.315879 -5.728699 -23.890721 -29.253545 + -41.022217 -37.053966"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1140.061.2017171222714.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1140.061.2017171222714.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1140.061.2017171222714.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1140.061.2017272150217.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1145.061.2017171222914.hdf","time_start":"2000-03-08T11:45:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090348","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T11:50:00.000Z","id":"G1462795887-LAADS","original_format":"ECHO10","granule_size":"163.324404716492","browse_flag":true,"polygons":[["-56.801178 + -51.06835 -63.425109 -8.60023 -45.181113 -7.547362 -40.960258 -36.942017 -56.801178 + -51.06835"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1145.061.2017171222914.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1145.061.2017171222914.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1145.061.2017171222914.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1145.061.2017272151328.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1150.061.2017171223906.hdf","time_start":"2000-03-08T11:50:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715091016","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T11:55:00.000Z","id":"G1462796027-LAADS","original_format":"ECHO10","granule_size":"154.887463569641","browse_flag":true,"polygons":[["-68.628317 + -82.047056 -81.035003 -0.140714 -62.951711 -7.803168 -56.825877 -50.735834 + -68.628317 -82.047056"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1150.061.2017171223906.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1150.061.2017171223906.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1150.061.2017171223906.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1150.061.2017272150356.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1155.061.2017171223212.hdf","time_start":"2000-03-08T11:55:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090696","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T12:00:00.000Z","id":"G1462795949-LAADS","original_format":"ECHO10","granule_size":"83.2561140060425","browse_flag":true,"polygons":[["-68.679965 + -133.293714 -80.43589 144.853447 -80.431178 1.304041 -68.845181 -81.516669 + -68.679965 -133.293714"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1155.061.2017171223212.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1155.061.2017171223212.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1155.061.2017171223212.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1155.061.2017272143856.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1245.061.2017171222914.hdf","time_start":"2000-03-08T12:45:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090031","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T12:50:00.000Z","id":"G1462795751-LAADS","original_format":"ECHO10","granule_size":"73.1894207000732","browse_flag":true,"polygons":[["78.505608 + -44.128942 67.966753 28.815161 69.929808 81.013371 82.346537 171.804854 78.505608 + -44.128942"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1245.061.2017171222914.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1245.061.2017171222914.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1245.061.2017171222914.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1245.061.2017272144009.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1250.061.2017171222545.hdf","time_start":"2000-03-08T12:50:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090032","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T12:55:00.000Z","id":"G1462795755-LAADS","original_format":"ECHO10","granule_size":"162.359159469604","browse_flag":true,"polygons":[["60.818364 + -39.596507 55.280002 0.448601 68.33762 28.441863 78.934028 -46.64219 60.818364 + -39.596507"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1250.061.2017171222545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1250.061.2017171222545.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1250.061.2017171222545.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1250.061.2017272150415.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1255.061.2017171222617.hdf","time_start":"2000-03-08T12:55:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090033","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T13:00:00.000Z","id":"G1462795760-LAADS","original_format":"ECHO10","granule_size":"162.605867385864","browse_flag":true,"polygons":[["43.014594 + -40.576793 39.206452 -12.471577 55.556583 -0.10508 61.301861 -40.189482 43.014594 + -40.576793"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1255.061.2017171222617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1255.061.2017171222617.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1255.061.2017171222617.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1255.061.2017272150832.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1300.061.2017171222558.hdf","time_start":"2000-03-08T13:00:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090034","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T13:05:00.000Z","id":"G1462795761-LAADS","original_format":"ECHO10","granule_size":"153.724980354309","browse_flag":true,"polygons":[["25.107586 + -42.835966 21.96876 -19.894926 39.406703 -12.922792 43.447366 -40.840235 25.107586 + -42.835966"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1300.061.2017171222558.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1300.061.2017171222558.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1300.061.2017171222558.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1300.061.2017272150255.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1305.061.2017171222552.hdf","time_start":"2000-03-08T13:05:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090035","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T13:10:00.000Z","id":"G1462795758-LAADS","original_format":"ECHO10","granule_size":"144.793716430664","browse_flag":true,"polygons":[["7.327546 + -45.88866 4.352507 -24.901922 22.108402 -20.195491 25.439533 -42.959143 7.327546 + -45.88866"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1305.061.2017171222552.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1305.061.2017171222552.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1305.061.2017171222552.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1305.061.2017272150404.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1310.061.2017171222555.hdf","time_start":"2000-03-08T13:10:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090036","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T13:15:00.000Z","id":"G1462795756-LAADS","original_format":"ECHO10","granule_size":"163.054062843323","browse_flag":true,"polygons":[["-10.365039 + -49.879743 -13.516516 -28.6342 4.44682 -25.022405 7.527151 -45.936103 -10.365039 + -49.879743"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1310.061.2017171222555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1310.061.2017171222555.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1310.061.2017171222555.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1310.061.2017272150038.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1315.061.2017171222527.hdf","time_start":"2000-03-08T13:15:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090037","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T13:20:00.000Z","id":"G1462795757-LAADS","original_format":"ECHO10","granule_size":"159.819578170776","browse_flag":true,"polygons":[["-27.861171 + -55.426191 -31.557329 -31.355202 -13.421851 -28.424259 -10.271456 -49.872768 + -27.861171 -55.426191"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1315.061.2017171222527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1315.061.2017171222527.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1315.061.2017171222527.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1315.061.2017272145512.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1320.061.2017171223103.hdf","time_start":"2000-03-08T13:20:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090349","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T13:25:00.000Z","id":"G1462795886-LAADS","original_format":"ECHO10","granule_size":"145.512958526611","browse_flag":true,"polygons":[["-44.713036 + -64.148324 -49.547767 -33.149688 -31.322886 -30.942488 -27.775111 -55.394443 + -44.713036 -64.148324"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1320.061.2017171223103.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1320.061.2017171223103.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1320.061.2017171223103.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1320.061.2017272145657.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1325.061.2017171222540.hdf","time_start":"2000-03-08T13:25:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090038","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T13:30:00.000Z","id":"G1462795762-LAADS","original_format":"ECHO10","granule_size":"151.495553970337","browse_flag":true,"polygons":[["-59.978964 + -80.638852 -67.41083 -32.911079 -49.17178 -32.509355 -44.662258 -64.004821 + -59.978964 -80.638852"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1325.061.2017171222540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1325.061.2017171222540.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1325.061.2017171222540.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1325.061.2017272150549.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1330.061.2017171223548.hdf","time_start":"2000-03-08T13:30:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090039","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T13:35:00.000Z","id":"G1462795754-LAADS","original_format":"ECHO10","granule_size":"147.945261955261","browse_flag":true,"polygons":[["-69.987695 + -117.610046 -84.729087 -12.819126 -66.911066 -32.024966 -60.034728 -80.244577 + -69.987695 -117.610046"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1330.061.2017171223548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1330.061.2017171223548.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1330.061.2017171223548.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1330.061.2017272145159.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1335.061.2017171223423.hdf","time_start":"2000-03-08T13:35:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090350","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T13:40:00.000Z","id":"G1462795878-LAADS","original_format":"ECHO10","granule_size":"57.5948619842529","browse_flag":true,"polygons":[["-66.720459 + -167.398394 -76.562299 124.224344 -84.098944 -12.178304 -70.260889 -117.159557 + -66.720459 -167.398394"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1335.061.2017171223423.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1335.061.2017171223423.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1335.061.2017171223423.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1335.061.2017272143823.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1425.061.2017171222517.hdf","time_start":"2000-03-08T14:25:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090040","coordinate_system":"GEODETIC","day_night_flag":"BOTH","time_end":"2000-03-08T14:30:00.000Z","id":"G1462795765-LAADS","original_format":"ECHO10","granule_size":"104.859939575195","browse_flag":true,"polygons":[["74.569627 + -66.540096 65.70682 -4.532627 70.9904 44.508841 85.780398 167.126876 74.569627 + -66.540096"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1425.061.2017171222517.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1425.061.2017171222517.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1425.061.2017171222517.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1425.061.2017272144302.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1430.061.2017171222656.hdf","time_start":"2000-03-08T14:30:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715090351","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T14:35:00.000Z","id":"G1462795875-LAADS","original_format":"ECHO10","granule_size":"157.569658279419","browse_flag":true,"polygons":[["56.836249 + -64.333886 51.842523 -27.970867 66.059086 -5.014841 75.043495 -68.024128 56.836249 + -64.333886"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1430.061.2017171222656.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1430.061.2017171222656.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1430.061.2017171222656.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1430.061.2017272145821.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1435.061.2017171221713.hdf","time_start":"2000-03-08T14:35:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089726","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T14:40:00.000Z","id":"G1462795586-LAADS","original_format":"ECHO10","granule_size":"168.027131080627","browse_flag":true,"polygons":[["39.028556 + -65.723533 35.430633 -39.162928 52.102269 -28.517283 57.314584 -64.835337 + 39.028556 -65.723533"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1435.061.2017171221713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1435.061.2017171221713.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1435.061.2017171221713.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1435.061.2017272150909.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1440.061.2017171222431.hdf","time_start":"2000-03-08T14:40:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089727","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T14:45:00.000Z","id":"G1462795590-LAADS","original_format":"ECHO10","granule_size":"160.19401550293","browse_flag":true,"polygons":[["21.21106 + -68.158771 18.141858 -45.860669 35.615726 -39.581251 39.440641 -65.941619 + 21.21106 -68.158771"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1440.061.2017171222431.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1440.061.2017171222431.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1440.061.2017171222431.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1440.061.2017272150130.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1445.061.2017171221706.hdf","time_start":"2000-03-08T14:45:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089728","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T14:50:00.000Z","id":"G1462795596-LAADS","original_format":"ECHO10","granule_size":"162.482201576233","browse_flag":true,"polygons":[["3.359489 + -71.402673 0.375391 -50.548795 18.270706 -46.125327 21.514737 -68.260797 3.359489 + -71.402673"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1445.061.2017171221706.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1445.061.2017171221706.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1445.061.2017171221706.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1445.061.2017272145532.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1450.061.2017171221717.hdf","time_start":"2000-03-08T14:50:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089729","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T14:55:00.000Z","id":"G1462795594-LAADS","original_format":"ECHO10","granule_size":"169.706132888794","browse_flag":true,"polygons":[["-14.315788 + -75.668418 -17.552961 -54.046444 0.458688 -50.60491 3.52754 -71.437757 -14.315788 + -75.668418"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1450.061.2017171221717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1450.061.2017171221717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1450.061.2017171221717.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1450.061.2017272150258.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1455.061.2017171221724.hdf","time_start":"2000-03-08T14:55:00.000Z","updated":"2022-11-22T11:55:30.600Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089730","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T15:00:00.000Z","id":"G1462795592-LAADS","original_format":"ECHO10","granule_size":"169.24112701416","browse_flag":true,"polygons":[["-31.709993 + -81.724411 -35.590046 -56.568728 -17.429051 -53.78003 -14.223567 -75.652164 + -31.709993 -81.724411"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1455.061.2017171221724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1455.061.2017171221724.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1455.061.2017171221724.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1455.061.2017272145900.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]},{"producer_granule_id":"MOD02QKM.A2000068.1500.061.2017171221717.hdf","time_start":"2000-03-08T15:00:00.000Z","updated":"2022-11-22T11:55:26.110Z","dataset_id":"MODIS/Terra + Calibrated Radiances 5-Min L1B Swath 250m","data_center":"LAADS","title":"LAADS:2715089406","coordinate_system":"GEODETIC","day_night_flag":"DAY","time_end":"2000-03-08T15:05:00.000Z","id":"G1462795417-LAADS","original_format":"ECHO10","granule_size":"158.510369300842","browse_flag":true,"polygons":[["-48.325932 + -91.607827 -53.559322 -58.079498 -35.324471 -56.108366 -31.624341 -81.689909 + -48.325932 -91.607827"]],"collection_concept_id":"C1378579425-LAADS","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","type":"application/x-hdfeos","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1500.061.2017171221717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","type":"application/x-hdfeos","hreflang":"en-US","href":"s3://prod-lads/MOD02QKM/MOD02QKM.A2000068.1500.061.2017171221717.hdf"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","title":"This + file may be accessed using OPeNDAP directly from this link (OPENDAP DATA)","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/2000/068/MOD02QKM.A2000068.1500.061.2017171221717.hdf.html"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","type":"text/html","title":"A + link to Data set landing page (Data Set Landing Page)","hreflang":"en-US","href":"http://doi.org/10.5067/MODIS/MOD02QKM.061"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/browse#","type":"image/jpeg","title":"This + Browse file may be downloaded directly from this link","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOBRGB/2000/068/MOBRGB.A2000068.1500.061.2017272145649.jpg"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/default/files/file_attachments/M1054D_PUG_083112_final.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://doi.org/10.5067/MODIS/MOD02QKM.061"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/search/order/2/MOD02QKM--61"},{"inherited":true,"length":"0.0KB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/archive/allData/61/MOD02QKM/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","type":"text/html","hreflang":"en-US","href":"https://ladsweb.modaps.eosdis.nasa.gov/opendap/RemoteResources/laads/allData/61/MOD02QKM/contents.html"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://mcst.gsfc.nasa.gov/sites/mcst.gsfc/files/file_attachments/MODIS_L1B_ATBD_ver4.pdf"}]}]}}' + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - CMR-Hits, CMR-Request-Id, X-Request-Id, CMR-Scroll-Id, CMR-Search-After, CMR-Timed-Out, + CMR-Shapefile-Original-Point-Count, CMR-Shapefile-Simplified-Point-Count + CMR-Hits: + - '1339956' + CMR-Request-Id: + - 21794283-3c1b-42b6-8abd-17d66e551947 + CMR-Search-After: + - '["laads",952527600000,1462795417]' + CMR-Took: + - '1172' + Connection: + - keep-alive + Content-Type: + - application/json;charset=utf-8 + Date: + - Mon, 14 Aug 2023 17:02:35 GMT + Server: + - ServerTokens ProductOnly + Strict-Transport-Security: + - max-age=31536000 + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding, User-Agent + Via: + - 1.1 d12f243c0eac340525d6f4e735c01b64.cloudfront.net (CloudFront) + X-Amz-Cf-Id: + - CzQlzB-L4zVL3hEz449UMPxITMIBI21X6qYnSPLnqrNscGEAq3xDPg== + X-Amz-Cf-Pop: + - SFO53-C1 + X-Cache: + - Miss from cloudfront + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Request-Id: + - CzQlzB-L4zVL3hEz449UMPxITMIBI21X6qYnSPLnqrNscGEAq3xDPg== + X-XSS-Protection: + - 1; mode=block + content-length: + - '6079071' + status: + code: 200 + message: OK +version: 1 diff --git a/fixtures/vcr_cassettes/TELLUS_GRAC.yaml b/fixtures/vcr_cassettes/TELLUS_GRAC.yaml new file mode 100644 index 0000000..415a5b9 --- /dev/null +++ b/fixtures/vcr_cassettes/TELLUS_GRAC.yaml @@ -0,0 +1,2088 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://cmr.earthdata.nasa.gov/search/granules.json?short_name=TELLUS_GRAC_L3_JPL_RL06_LND_v04&page_size=0 + response: + body: + string: '{"feed":{"updated":"2023-08-14T17:02:36.801Z","id":"https://cmr.earthdata.nasa.gov:443/search/granules.json?short_name=TELLUS_GRAC_L3_JPL_RL06_LND_v04&page_size=0","title":"ECHO + granule metadata","entry":[]}}' + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - CMR-Hits, CMR-Request-Id, X-Request-Id, CMR-Scroll-Id, CMR-Search-After, CMR-Timed-Out, + CMR-Shapefile-Original-Point-Count, CMR-Shapefile-Simplified-Point-Count + CMR-Hits: + - '163' + CMR-Request-Id: + - 5855d714-8aff-4d0f-b4cc-e556f02ef96a + CMR-Took: + - '52' + Connection: + - keep-alive + Content-Type: + - application/json;charset=utf-8 + Date: + - Mon, 14 Aug 2023 17:02:36 GMT + Server: + - ServerTokens ProductOnly + Strict-Transport-Security: + - max-age=31536000 + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding, User-Agent + Via: + - 1.1 cc58556a6e846289f4d3105969536e4c.cloudfront.net (CloudFront) + X-Amz-Cf-Id: + - qj9VuAc1JQu-rnMVDg3mGwstR-jGQA4rd7MKVRAEpXeTDbKZT5p5jg== + X-Amz-Cf-Pop: + - SFO53-C1 + X-Cache: + - Miss from cloudfront + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Request-Id: + - qj9VuAc1JQu-rnMVDg3mGwstR-jGQA4rd7MKVRAEpXeTDbKZT5p5jg== + X-XSS-Protection: + - 1; mode=block + content-length: + - '208' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.31.0 + method: GET + uri: https://cmr.earthdata.nasa.gov/search/granules.json?short_name=TELLUS_GRAC_L3_JPL_RL06_LND_v04&page_size=163 + response: + body: + string: '{"feed":{"updated":"2023-08-14T17:02:40.416Z","id":"https://cmr.earthdata.nasa.gov:443/search/granules.json?short_name=TELLUS_GRAC_L3_JPL_RL06_LND_v04&page_size=163","title":"ECHO + granule metadata","entry":[{"boxes":["-89.5 0.5 89.5 180","-89.5 -180 89.5 + -0.5"],"time_start":"2002-04-04T00:00:00.000Z","updated":"2023-04-17T15:27:21.022Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2002-04-30T23:59:59.000Z","id":"G2658326635-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2002094-2002120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2002-05-02T00:00:00.000Z","updated":"2023-04-17T15:27:18.136Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2002-05-18T23:59:59.000Z","id":"G2658326621-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2002122-2002138_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2002-08-01T00:00:00.000Z","updated":"2023-04-17T15:27:22.505Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2002-08-31T23:59:59.000Z","id":"G2658326652-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2002213-2002243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2002-09-01T00:00:00.000Z","updated":"2023-04-17T15:27:18.124Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2002-09-30T23:59:59.000Z","id":"G2658326597-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2002244-2002273_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2002-10-01T00:00:00.000Z","updated":"2023-04-17T15:27:18.735Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2002-10-31T23:59:59.000Z","id":"G2658326610-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2002274-2002304_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2002-11-01T00:00:00.000Z","updated":"2023-04-17T15:27:19.848Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2002-11-30T23:59:59.000Z","id":"G2658326622-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2002305-2002334_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2002-12-01T00:00:00.000Z","updated":"2023-04-17T15:27:16.237Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2002-12-31T23:59:59.000Z","id":"G2658326572-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2002335-2002365_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-01-01T00:00:00.000Z","updated":"2023-04-17T15:27:18.752Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-01-31T23:59:59.000Z","id":"G2658326608-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003001-2003031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-02-01T00:00:00.000Z","updated":"2023-04-17T15:27:15.333Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-02-28T23:59:59.000Z","id":"G2658326565-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003032-2003059_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-03-01T00:00:00.000Z","updated":"2023-04-17T15:27:17.382Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-03-31T23:59:59.000Z","id":"G2658326593-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003060-2003090_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-04-01T00:00:00.000Z","updated":"2023-04-17T15:27:22.184Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-04-30T23:59:59.000Z","id":"G2658326642-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003091-2003120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-05-01T00:00:00.000Z","updated":"2023-04-17T15:27:20.593Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-05-21T23:59:59.000Z","id":"G2658326629-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003121-2003141_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-07-01T00:00:00.000Z","updated":"2023-04-17T15:27:19.754Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-07-31T23:59:59.000Z","id":"G2658326623-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003182-2003212_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-08-01T00:00:00.000Z","updated":"2023-04-17T15:27:19.370Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-08-31T23:59:59.000Z","id":"G2658326618-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003213-2003243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-09-01T00:00:00.000Z","updated":"2023-04-17T15:27:22.406Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-09-30T23:59:59.000Z","id":"G2658326647-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003244-2003273_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-10-01T00:00:00.000Z","updated":"2023-04-17T15:27:21.221Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-10-30T23:59:59.000Z","id":"G2658326640-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003274-2003303_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-11-01T00:00:00.000Z","updated":"2023-04-17T15:27:22.667Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-11-30T23:59:59.000Z","id":"G2658326655-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003305-2003334_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2003-12-01T00:00:00.000Z","updated":"2023-04-17T15:27:22.423Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2003-12-31T23:59:59.000Z","id":"G2658326654-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2003335-2003365_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-01-01T00:00:00.000Z","updated":"2023-04-17T15:27:23.928Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-01-13T23:59:59.000Z","id":"G2658326659-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004001-2004013_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-02-04T00:00:00.000Z","updated":"2023-04-17T15:27:23.690Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-02-29T23:59:59.000Z","id":"G2658326656-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004035-2004060_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-03-01T00:00:00.000Z","updated":"2023-04-17T15:27:23.815Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-03-31T23:59:59.000Z","id":"G2658326657-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004061-2004091_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-04-01T00:00:00.000Z","updated":"2023-04-17T15:27:26.317Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-04-30T23:59:59.000Z","id":"G2658326663-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004092-2004121_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-05-01T00:00:00.000Z","updated":"2023-04-17T15:27:26.404Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-05-31T23:59:59.000Z","id":"G2658326664-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004122-2004152_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-06-01T00:00:00.000Z","updated":"2023-04-17T15:27:28.373Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-06-30T23:59:59.000Z","id":"G2658326672-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004153-2004182_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-07-01T00:00:00.000Z","updated":"2023-04-17T15:27:28.533Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-07-31T23:59:59.000Z","id":"G2658326671-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004183-2004213_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-08-01T00:00:00.000Z","updated":"2023-04-17T15:28:19.023Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-08-31T23:59:59.000Z","id":"G2658327832-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004214-2004244_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-09-01T00:00:00.000Z","updated":"2023-04-17T15:28:23.029Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-09-30T23:59:59.000Z","id":"G2658327884-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004245-2004274_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-10-01T00:00:00.000Z","updated":"2023-04-17T15:28:52.770Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-10-31T23:59:59.000Z","id":"G2658328204-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004275-2004305_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-11-01T00:00:00.000Z","updated":"2023-04-17T15:28:16.622Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-11-30T23:59:59.000Z","id":"G2658327811-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004306-2004335_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2004-12-01T00:00:00.000Z","updated":"2023-04-17T15:28:19.516Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2004-12-31T23:59:59.000Z","id":"G2658327841-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2004336-2004366_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-01-01T00:00:00.000Z","updated":"2023-04-17T15:28:18.331Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-01-31T23:59:59.000Z","id":"G2658327821-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005001-2005031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-02-01T00:00:00.000Z","updated":"2023-04-17T15:28:24.851Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-02-28T23:59:59.000Z","id":"G2658327901-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005032-2005059_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-03-01T00:00:00.000Z","updated":"2023-04-17T15:28:17.766Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-03-31T23:59:59.000Z","id":"G2658327817-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005060-2005090_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-04-01T00:00:00.000Z","updated":"2023-04-17T15:28:21.622Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-04-30T23:59:59.000Z","id":"G2658327872-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005091-2005120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-05-01T00:00:00.000Z","updated":"2023-04-17T15:28:55.841Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-05-31T23:59:59.000Z","id":"G2658328233-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005121-2005151_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-06-01T00:00:00.000Z","updated":"2023-04-17T15:28:20.922Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-06-30T23:59:59.000Z","id":"G2658327860-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005152-2005181_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-07-01T00:00:00.000Z","updated":"2023-04-17T15:28:53.287Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-07-31T23:59:59.000Z","id":"G2658328218-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005182-2005212_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-08-01T00:00:00.000Z","updated":"2023-04-17T15:28:23.469Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-08-31T23:59:59.000Z","id":"G2658327896-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005213-2005243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-09-01T00:00:00.000Z","updated":"2023-04-17T15:28:56.543Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-09-30T23:59:59.000Z","id":"G2658328255-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005244-2005273_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-10-01T00:00:00.000Z","updated":"2023-04-17T15:28:21.769Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-10-31T23:59:59.000Z","id":"G2658327865-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005274-2005304_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-11-01T00:00:00.000Z","updated":"2023-04-17T15:28:18.667Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-11-30T23:59:59.000Z","id":"G2658327856-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005305-2005334_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2005-12-01T00:00:00.000Z","updated":"2023-04-17T15:28:22.206Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2005-12-31T23:59:59.000Z","id":"G2658327867-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2005335-2005365_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-01-01T00:00:00.000Z","updated":"2023-04-17T15:28:20.734Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-01-31T23:59:59.000Z","id":"G2658327853-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006001-2006031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-02-01T00:00:00.000Z","updated":"2023-04-17T15:28:22.247Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-02-28T23:59:59.000Z","id":"G2658327874-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006032-2006059_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-03-01T00:00:00.000Z","updated":"2023-04-17T15:28:19.766Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-03-31T23:59:59.000Z","id":"G2658327838-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006060-2006090_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-04-01T00:00:00.000Z","updated":"2023-04-17T15:28:21.481Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-04-30T23:59:59.000Z","id":"G2658327861-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006091-2006120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-05-01T00:00:00.000Z","updated":"2023-04-17T15:28:19.169Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-05-31T23:59:59.000Z","id":"G2658327831-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006121-2006151_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-06-01T00:00:00.000Z","updated":"2023-04-17T15:28:55.893Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-06-30T23:59:59.000Z","id":"G2658328236-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006152-2006181_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-07-01T00:00:00.000Z","updated":"2023-04-17T15:28:20.167Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-07-31T23:59:59.000Z","id":"G2658327846-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006182-2006212_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-08-01T00:00:00.000Z","updated":"2023-04-17T15:28:23.783Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-08-31T23:59:59.000Z","id":"G2658327893-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006213-2006243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-09-01T00:00:00.000Z","updated":"2023-04-17T15:28:23.481Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-09-30T23:59:59.000Z","id":"G2658327891-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006244-2006273_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-10-01T00:00:00.000Z","updated":"2023-04-17T15:28:22.264Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-10-31T23:59:59.000Z","id":"G2658327868-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006274-2006304_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-11-01T00:00:00.000Z","updated":"2023-04-17T15:28:19.324Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-11-30T23:59:59.000Z","id":"G2658327859-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006305-2006334_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2006-12-01T00:00:00.000Z","updated":"2023-04-17T15:28:22.023Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2006-12-31T23:59:59.000Z","id":"G2658327903-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2006335-2006365_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-01-01T00:00:00.000Z","updated":"2023-04-17T15:28:20.788Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-01-31T23:59:59.000Z","id":"G2658327851-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007001-2007031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-02-01T00:00:00.000Z","updated":"2023-04-17T15:28:51.842Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-02-28T23:59:59.000Z","id":"G2658328194-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007032-2007059_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-03-01T00:00:00.000Z","updated":"2023-04-17T15:28:52.407Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-03-31T23:59:59.000Z","id":"G2658328202-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007060-2007090_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-04-01T00:00:00.000Z","updated":"2023-04-17T15:28:56.953Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-04-30T23:59:59.000Z","id":"G2658328264-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007091-2007120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-05-01T00:00:00.000Z","updated":"2023-04-17T15:28:19.099Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-05-31T23:59:59.000Z","id":"G2658327871-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007121-2007151_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-06-01T00:00:00.000Z","updated":"2023-04-17T15:28:17.804Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-06-30T23:59:59.000Z","id":"G2658327818-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007152-2007181_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-07-01T00:00:00.000Z","updated":"2023-04-17T15:28:18.958Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-07-31T23:59:59.000Z","id":"G2658327830-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007182-2007212_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-08-01T00:00:00.000Z","updated":"2023-04-17T15:28:17.848Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-08-31T23:59:59.000Z","id":"G2658327822-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007213-2007243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-09-01T00:00:00.000Z","updated":"2023-04-17T15:28:20.931Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-09-30T23:59:59.000Z","id":"G2658327855-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007244-2007273_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-10-01T00:00:00.000Z","updated":"2023-04-17T15:28:18.567Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-10-31T23:59:59.000Z","id":"G2658327829-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007274-2007304_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-11-01T00:00:00.000Z","updated":"2023-04-17T15:28:18.345Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-11-30T23:59:59.000Z","id":"G2658327823-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007305-2007334_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2007-12-01T00:00:00.000Z","updated":"2023-04-17T15:28:20.663Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2007-12-31T23:59:59.000Z","id":"G2658327852-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2007335-2007365_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-01-01T00:00:00.000Z","updated":"2023-04-17T15:28:56.261Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-01-31T23:59:59.000Z","id":"G2658328243-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008001-2008031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-02-01T00:00:00.000Z","updated":"2023-04-17T15:28:19.884Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-02-29T23:59:59.000Z","id":"G2658327845-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008032-2008060_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-03-01T00:00:00.000Z","updated":"2023-04-17T15:28:56.908Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-03-31T23:59:59.000Z","id":"G2658328261-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008061-2008091_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-04-01T00:00:00.000Z","updated":"2023-04-17T15:28:57.566Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-04-30T23:59:59.000Z","id":"G2658328280-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008092-2008121_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-05-01T00:00:00.000Z","updated":"2023-04-17T15:28:59.506Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-05-31T23:59:59.000Z","id":"G2658328293-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008122-2008152_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-06-01T00:00:00.000Z","updated":"2023-04-17T15:28:32.854Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-06-30T23:59:59.000Z","id":"G2658327957-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008153-2008182_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-07-01T00:00:00.000Z","updated":"2023-04-17T15:28:23.607Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-07-31T23:59:59.000Z","id":"G2658327895-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008183-2008213_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-08-01T00:00:00.000Z","updated":"2023-04-17T15:28:52.068Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-08-31T23:59:59.000Z","id":"G2658328195-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008214-2008244_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-09-01T00:00:00.000Z","updated":"2023-04-17T15:28:56.948Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-09-30T23:59:59.000Z","id":"G2658328265-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008245-2008274_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-10-01T00:00:00.000Z","updated":"2023-04-17T15:28:56.308Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-10-31T23:59:59.000Z","id":"G2658328247-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008275-2008305_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-11-01T00:00:00.000Z","updated":"2023-04-17T15:28:24.952Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-11-30T23:59:59.000Z","id":"G2658327902-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008306-2008335_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2008-12-01T00:00:00.000Z","updated":"2023-04-17T15:28:17.432Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2008-12-31T23:59:59.000Z","id":"G2658327815-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2008336-2008366_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-01-01T00:00:00.000Z","updated":"2023-04-17T15:28:54.248Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-01-31T23:59:59.000Z","id":"G2658328225-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009001-2009031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-02-01T00:00:00.000Z","updated":"2023-04-17T15:28:17.367Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-02-28T23:59:59.000Z","id":"G2658327814-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009032-2009059_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-03-01T00:00:00.000Z","updated":"2023-04-17T15:28:26.083Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-03-31T23:59:59.000Z","id":"G2658327907-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009060-2009090_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-04-01T00:00:00.000Z","updated":"2023-04-17T15:28:55.223Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-04-30T23:59:59.000Z","id":"G2658328232-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009091-2009120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-05-01T00:00:00.000Z","updated":"2023-04-17T15:28:56.772Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-05-31T23:59:59.000Z","id":"G2658328260-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009121-2009151_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-06-01T00:00:00.000Z","updated":"2023-04-17T15:28:53.551Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-06-30T23:59:59.000Z","id":"G2658328210-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009152-2009181_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-07-01T00:00:00.000Z","updated":"2023-04-17T15:28:23.865Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-07-31T23:59:59.000Z","id":"G2658327894-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009182-2009212_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-08-01T00:00:00.000Z","updated":"2023-04-17T15:28:52.826Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-08-31T23:59:59.000Z","id":"G2658328215-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009213-2009243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-09-01T00:00:00.000Z","updated":"2023-04-17T15:28:21.569Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-09-30T23:59:59.000Z","id":"G2658327862-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009244-2009273_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-10-01T00:00:00.000Z","updated":"2023-04-17T15:28:56.140Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-10-31T23:59:59.000Z","id":"G2658328245-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009274-2009304_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-11-01T00:00:00.000Z","updated":"2023-04-17T15:28:55.784Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-11-30T23:59:59.000Z","id":"G2658328237-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009305-2009334_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2009-12-01T00:00:00.000Z","updated":"2023-04-17T15:28:52.223Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2009-12-31T23:59:59.000Z","id":"G2658328203-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2009335-2009365_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-01-01T00:00:00.000Z","updated":"2023-04-17T15:28:53.703Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-01-31T23:59:59.000Z","id":"G2658328221-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010001-2010031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-02-01T00:00:00.000Z","updated":"2023-04-17T15:28:56.507Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-02-28T23:59:59.000Z","id":"G2658328249-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010032-2010059_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-03-01T00:00:00.000Z","updated":"2023-04-17T15:29:01.505Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-03-31T23:59:59.000Z","id":"G2658328315-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010060-2010090_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-04-01T00:00:00.000Z","updated":"2023-04-17T15:28:52.571Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-04-30T23:59:59.000Z","id":"G2658328205-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010091-2010120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-05-01T00:00:00.000Z","updated":"2023-04-17T15:29:02.586Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-05-31T23:59:59.000Z","id":"G2658328317-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010121-2010151_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-06-01T00:00:00.000Z","updated":"2023-04-17T15:28:31.928Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-06-30T23:59:59.000Z","id":"G2658327943-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010152-2010181_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-07-01T00:00:00.000Z","updated":"2023-04-17T15:29:00.005Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-07-31T23:59:59.000Z","id":"G2658328304-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010182-2010212_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-08-01T00:00:00.000Z","updated":"2023-04-17T15:28:33.524Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-08-31T23:59:59.000Z","id":"G2658327954-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010213-2010243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-09-01T00:00:00.000Z","updated":"2023-04-17T15:28:33.147Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-09-30T23:59:59.000Z","id":"G2658327952-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010244-2010273_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-10-01T00:00:00.000Z","updated":"2023-04-17T15:28:34.386Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-10-31T23:59:59.000Z","id":"G2658327963-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010274-2010304_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-11-01T00:00:00.000Z","updated":"2023-04-17T15:29:00.900Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-11-30T23:59:59.000Z","id":"G2658328303-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010305-2010334_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2010-12-01T00:00:00.000Z","updated":"2023-04-17T15:28:33.990Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2010-12-27T23:59:59.000Z","id":"G2658327967-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2010335-2010361_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-02-08T00:00:00.000Z","updated":"2023-04-17T15:28:34.391Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2011-02-28T23:59:59.000Z","id":"G2658327966-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011039-2011059_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-03-01T00:00:00.000Z","updated":"2023-04-17T15:28:34.286Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2011-03-31T23:59:59.000Z","id":"G2658327969-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011060-2011090_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-04-01T00:00:00.000Z","updated":"2023-04-17T15:28:36.967Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2011-04-30T23:59:59.000Z","id":"G2658327992-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011091-2011120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-05-01T00:00:00.000Z","updated":"2023-04-17T15:28:36.988Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2011-05-31T23:59:59.000Z","id":"G2658327995-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011121-2011151_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-07-05T00:00:00.000Z","updated":"2023-04-17T15:28:36.121Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2011-07-31T23:59:59.000Z","id":"G2658327987-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011186-2011212_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-08-01T00:00:00.000Z","updated":"2023-04-17T15:28:38.679Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2011-08-31T23:59:59.000Z","id":"G2658328018-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011213-2011243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-09-01T00:00:00.000Z","updated":"2023-04-17T15:29:15.974Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2011-09-30T23:59:59.000Z","id":"G2658328458-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011244-2011273_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-10-01T00:00:00.000Z","updated":"2023-04-17T15:29:20.099Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2011-10-31T23:59:59.000Z","id":"G2658328518-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011274-2011304_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-10-17T00:00:00.000Z","updated":"2023-04-17T15:29:18.857Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2011-11-16T23:59:59.000Z","id":"G2658328511-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011290-2011320_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2011-12-17T00:00:00.000Z","updated":"2023-04-17T15:29:20.191Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-01-15T23:59:59.000Z","id":"G2658328532-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2011351-2012015_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-01-01T00:00:00.000Z","updated":"2023-04-17T15:29:20.580Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-01-31T23:59:59.000Z","id":"G2658328526-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012001-2012031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-02-01T00:00:00.000Z","updated":"2023-04-17T15:29:24.475Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-02-29T23:59:59.000Z","id":"G2658328565-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012032-2012060_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-03-01T00:00:00.000Z","updated":"2023-04-17T15:29:25.877Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-03-31T23:59:59.000Z","id":"G2658328574-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012061-2012091_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-03-20T00:00:00.000Z","updated":"2023-04-17T15:29:24.517Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-04-19T23:59:59.000Z","id":"G2658328564-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012080-2012110_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-06-01T00:00:00.000Z","updated":"2023-04-17T15:29:25.632Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-06-30T23:59:59.000Z","id":"G2658328570-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012153-2012182_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-07-01T00:00:00.000Z","updated":"2023-04-17T15:29:19.710Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-07-31T23:59:59.000Z","id":"G2658328507-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012183-2012213_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-08-01T00:00:00.000Z","updated":"2023-04-17T15:29:17.574Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-08-31T23:59:59.000Z","id":"G2658328478-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012214-2012244_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-09-01T00:00:00.000Z","updated":"2023-04-17T15:29:22.585Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-09-24T23:59:59.000Z","id":"G2658328550-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012245-2012268_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-11-06T00:00:00.000Z","updated":"2023-04-17T15:29:21.939Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-11-30T23:59:59.000Z","id":"G2658328543-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012311-2012335_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2012-12-01T00:00:00.000Z","updated":"2023-04-17T15:29:22.054Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2012-12-31T23:59:59.000Z","id":"G2658328544-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2012336-2012366_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2013-01-01T00:00:00.000Z","updated":"2023-04-17T15:29:24.931Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2013-01-31T23:59:59.000Z","id":"G2658328567-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2013001-2013031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2013-02-01T00:00:00.000Z","updated":"2023-04-17T15:29:26.126Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2013-02-26T23:59:59.000Z","id":"G2658328582-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2013032-2013057_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2013-04-11T00:00:00.000Z","updated":"2023-04-17T15:29:27.173Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2013-04-30T23:59:59.000Z","id":"G2658328586-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2013101-2013120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2013-05-01T00:00:00.000Z","updated":"2023-04-17T15:29:24.112Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2013-05-31T23:59:59.000Z","id":"G2658328561-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2013121-2013151_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2013-06-01T00:00:00.000Z","updated":"2023-04-17T15:29:26.107Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2013-06-30T23:59:59.000Z","id":"G2658328577-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2013152-2013181_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2013-07-01T00:00:00.000Z","updated":"2023-04-17T15:29:20.452Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2013-07-31T23:59:59.000Z","id":"G2658328523-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2013182-2013212_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2013-10-01T00:00:00.000Z","updated":"2023-04-17T15:29:26.273Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2013-10-31T23:59:59.000Z","id":"G2658328579-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2013274-2013304_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2013-11-01T00:00:00.000Z","updated":"2023-04-17T15:29:19.362Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2013-11-30T23:59:59.000Z","id":"G2658328504-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2013305-2013334_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2013-12-01T00:00:00.000Z","updated":"2023-04-17T15:29:17.857Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2013-12-31T23:59:59.000Z","id":"G2658328474-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2013335-2013365_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2014-01-01T00:00:00.000Z","updated":"2023-04-17T15:29:21.326Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2014-01-17T23:59:59.000Z","id":"G2658328538-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2014001-2014017_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2014-03-01T00:00:00.000Z","updated":"2023-04-17T15:29:16.012Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2014-03-31T23:59:59.000Z","id":"G2658328460-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2014060-2014090_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2014-04-01T00:00:00.000Z","updated":"2023-04-17T15:29:19.873Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2014-04-30T23:59:59.000Z","id":"G2658328514-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2014091-2014120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2014-05-01T00:00:00.000Z","updated":"2023-04-17T15:29:25.819Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2014-05-31T23:59:59.000Z","id":"G2658328571-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2014121-2014151_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2014-06-01T00:00:00.000Z","updated":"2023-04-17T15:29:16.418Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2014-06-24T23:59:59.000Z","id":"G2658328463-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2014152-2014175_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2014-08-01T00:00:00.000Z","updated":"2023-04-17T15:29:21.736Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2014-08-31T23:59:59.000Z","id":"G2658328534-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2014213-2014243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2014-09-01T00:00:00.000Z","updated":"2023-04-17T15:29:20.938Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2014-09-30T23:59:59.000Z","id":"G2658328533-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2014244-2014273_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2014-10-01T00:00:00.000Z","updated":"2023-04-17T15:29:19.715Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2014-10-31T23:59:59.000Z","id":"G2658328508-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2014274-2014304_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2014-11-01T00:00:00.000Z","updated":"2023-04-17T15:29:23.761Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2014-12-02T23:59:59.000Z","id":"G2658328562-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2014305-2014336_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2015-01-13T00:00:00.000Z","updated":"2023-04-17T15:29:24.979Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2015-01-31T23:59:59.000Z","id":"G2658328569-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2015013-2015031_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2015-02-01T00:00:00.000Z","updated":"2023-04-17T15:29:28.641Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2015-02-28T23:59:59.000Z","id":"G2658328592-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2015032-2015059_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2015-03-01T00:00:00.000Z","updated":"2023-04-17T15:29:18.539Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2015-03-31T23:59:59.000Z","id":"G2658328491-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2015060-2015090_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2015-04-01T00:00:00.000Z","updated":"2023-04-17T15:29:19.069Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2015-04-30T23:59:59.000Z","id":"G2658328494-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2015091-2015120_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2015-04-12T00:00:00.000Z","updated":"2023-04-17T15:29:21.954Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2015-05-11T23:59:59.000Z","id":"G2658328539-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2015102-2015131_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2015-06-29T00:00:00.000Z","updated":"2023-04-17T15:29:21.068Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2015-07-31T23:59:59.000Z","id":"G2658328530-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2015180-2015212_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2015-08-01T00:00:00.000Z","updated":"2023-04-17T15:29:17.734Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2015-08-31T23:59:59.000Z","id":"G2658328475-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2015213-2015243_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2015-09-01T00:00:00.000Z","updated":"2023-04-17T15:29:18.006Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2015-09-27T23:59:59.000Z","id":"G2658328481-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2015244-2015270_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2015-12-12T00:00:00.000Z","updated":"2023-04-17T15:29:16.186Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2016-01-03T23:59:59.000Z","id":"G2658328462-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2015346-2016003_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2016-01-04T00:00:00.000Z","updated":"2023-04-17T15:29:15.838Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2016-01-28T23:59:59.000Z","id":"G2658328461-POCLOUD","original_format":"UMM_JSON","granule_size":"3.774651527404785","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2016004-2016028_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2016-01-29T00:00:00.000Z","updated":"2023-04-17T15:29:26.628Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2016-02-29T23:59:59.000Z","id":"G2658328581-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2016029-2016060_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2016-03-01T00:00:00.000Z","updated":"2023-04-17T15:29:23.865Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2016-03-31T23:59:59.000Z","id":"G2658328559-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0474653244018555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2016061-2016091_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2016-05-08T00:00:00.000Z","updated":"2023-04-17T15:29:21.571Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2016-05-31T23:59:59.000Z","id":"G2658328537-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2016129-2016152_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2016-06-01T00:00:00.000Z","updated":"2023-04-17T15:29:18.705Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2016-06-30T23:59:59.000Z","id":"G2658328498-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5008010864257812","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2016153-2016182_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2016-07-01T00:00:00.000Z","updated":"2023-04-17T15:29:20.747Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2016-07-29T23:59:59.000Z","id":"G2658328528-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5012788772583008","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2016183-2016211_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2016-08-08T00:00:00.000Z","updated":"2023-04-17T15:29:19.283Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2016-09-03T23:59:59.000Z","id":"G2658328495-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5013828277587891","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2016221-2016247_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2016-11-14T00:00:00.000Z","updated":"2023-04-17T15:29:23.079Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2016-12-10T23:59:59.000Z","id":"G2658328549-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0479536056518555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2016319-2016345_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2016-12-11T00:00:00.000Z","updated":"2023-04-17T15:29:27.218Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-01-06T23:59:59.000Z","id":"G2658328588-POCLOUD","original_format":"UMM_JSON","granule_size":"3.7752199172973633","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2016346-2017006_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2017-01-07T00:00:00.000Z","updated":"2023-04-17T15:29:26.123Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-02-03T23:59:59.000Z","id":"G2658328578-POCLOUD","original_format":"UMM_JSON","granule_size":"1.0479536056518555","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2017007-2017034_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2017-03-17T00:00:00.000Z","updated":"2023-04-17T15:29:16.906Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-04-14T23:59:59.000Z","id":"G2658328466-POCLOUD","original_format":"UMM_JSON","granule_size":"3.7752199172973633","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2017076-2017104_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2017-04-10T00:00:00.000Z","updated":"2023-04-17T15:29:19.246Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-08T23:59:59.000Z","id":"G2658328497-POCLOUD","original_format":"UMM_JSON","granule_size":"3.7752199172973633","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2017100-2017128_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2017-05-02T00:00:00.000Z","updated":"2023-04-17T15:29:23.504Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-05-22T23:59:59.000Z","id":"G2658328563-POCLOUD","original_format":"UMM_JSON","granule_size":"0.5013828277587891","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2017122-2017142_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]},{"boxes":["-89.5 + 0.5 89.5 180","-89.5 -180 89.5 -0.5"],"time_start":"2017-05-23T00:00:00.000Z","updated":"2023-04-17T15:29:20.251Z","dataset_id":"JPL + TELLUS GRACE Level-3 Monthly Land Water-Equivalent-Thickness Surface Mass + Anomaly Release 6.0 version 04","data_center":"POCLOUD","title":"GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04","coordinate_system":"CARTESIAN","day_night_flag":"UNSPECIFIED","time_end":"2017-06-29T23:59:59.000Z","id":"G2658328520-POCLOUD","original_format":"UMM_JSON","granule_size":"3.7752199172973633","browse_flag":false,"collection_concept_id":"C2077042612-POCLOUD","online_access_flag":true,"links":[{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04.nc","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-protected/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04.nc"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04.tif","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04.tif"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/data#","title":"Download + GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04.txt","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/s3#","title":"This + link provides direct download access via S3 to the granule","hreflang":"en-US","href":"s3://podaac-ops-cumulus-public/TELLUS_GRAC_L3_JPL_RL06_LND_v04/GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04.txt"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","title":"api + endpoint to retrieve temporary credentials valid for same-region direct s3 + access","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/s3credentials"},{"rel":"http://esipfed.org/ns/fedsearch/1.1/service#","title":"OPeNDAP + request URL","hreflang":"en-US","href":"https://opendap.earthdata.nasa.gov/collections/C2077042612-POCLOUD/granules/GRD-3_2017143-2017180_GRAC_JPLEM_BA01_0600_LND_v04"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://earthdata.nasa.gov/esdis/eso/standards-and-references/yaml-encoding-ascii-format-for-grace-grace-fo-mission-data"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/metadata#","hreflang":"en-US","href":"https://github.com/podaac/data-readers"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE-FO_L3_Handbook_JPL.pdf"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/GRACE"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://archive.podaac.earthdata.nasa.gov/podaac-ops-cumulus-docs/gracefo/open/docs/GRACE_GRACE-FO_Months_RL06.csv"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://grace.jpl.nasa.gov/"},{"inherited":true,"rel":"http://esipfed.org/ns/fedsearch/1.1/documentation#","hreflang":"en-US","href":"https://podaac.jpl.nasa.gov/CitingPODAAC"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://cmr.earthdata.nasa.gov/virtual-directory/collections/C2077042612-POCLOUD"},{"inherited":true,"length":"0MB","rel":"http://esipfed.org/ns/fedsearch/1.1/data#","hreflang":"en-US","href":"https://search.earthdata.nasa.gov/search/granules?p=C2077042612-POCLOUD"}]}]}}' + headers: + Access-Control-Allow-Origin: + - '*' + Access-Control-Expose-Headers: + - CMR-Hits, CMR-Request-Id, X-Request-Id, CMR-Scroll-Id, CMR-Search-After, CMR-Timed-Out, + CMR-Shapefile-Original-Point-Count, CMR-Shapefile-Simplified-Point-Count + CMR-Hits: + - '163' + CMR-Request-Id: + - 60eb29b2-95e1-453c-8efe-6e59cf649eb5 + CMR-Search-After: + - '["pocloud",1495497600000,2658328520]' + CMR-Took: + - '4959' + Connection: + - keep-alive + Content-Type: + - application/json;charset=utf-8 + Date: + - Mon, 14 Aug 2023 17:02:42 GMT + Server: + - ServerTokens ProductOnly + Strict-Transport-Security: + - max-age=31536000 + Transfer-Encoding: + - chunked + Vary: + - Accept-Encoding, User-Agent + Via: + - 1.1 44933b72098305e9c31fc50b2e6554a0.cloudfront.net (CloudFront) + X-Amz-Cf-Id: + - 9TJ3JRMGc6mUxKegR4f2HSLC_1Cfwei5QHZuicg_aLsWEJS3T6XCNg== + X-Amz-Cf-Pop: + - SFO53-C1 + X-Cache: + - Miss from cloudfront + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - SAMEORIGIN + X-Request-Id: + - 9TJ3JRMGc6mUxKegR4f2HSLC_1Cfwei5QHZuicg_aLsWEJS3T6XCNg== + X-XSS-Protection: + - 1; mode=block + content-length: + - '726816' + status: + code: 200 + message: OK +version: 1 diff --git a/tests/test_multiple_queries.py b/tests/test_multiple_queries.py index b9330d2..685cfdb 100644 --- a/tests/test_multiple_queries.py +++ b/tests/test_multiple_queries.py @@ -10,36 +10,78 @@ my_vcr = vcr.VCR( record_mode='once', decode_compressed_response=True, + # Header matching is not set by default, we need that to test the + # search-after functionality is performing correctly. match_on=['method', 'scheme', 'host', 'port', 'path', 'query', 'headers'] ) -class TestMultipleQueries(unittest.TestCase): +def assert_unique_granules_from_results(granules): + granule_ids = [] + for granule in granules: + granule_ids.append(granule['title']) + + unique_granules = set(granule_ids) + return len(unique_granules) == len(granule_ids) - def test_get_some(self): +class TestMultipleQueries(unittest.TestCase): + + def test_get_more_than_2000(self): + """ + If we execute a get with a limit of more than 2000 + then we expect multiple invocations of a cmr granule search and + to not fetch back more results than we ask for + """ with my_vcr.use_cassette('fixtures/vcr_cassettes/MOD02QKM.yaml') as cass: api = GranuleQuery() granules = api.short_name("MOD02QKM").get(3000) self.assertEqual(len(granules), 3000) + # Assert all 3000 qranule results have unique granule ids + assert_unique_granules_from_results(granules) + # Assert that we performed two search results queries self.assertEqual(len(cass), 2) - ''' - def test_get_limit_many(self): - api = GranuleQuery() - granules = api.short_name("MOD02QKM").get() - self.assertEqual(len(granules), 2000) - @vcr.use_cassette('fixtures/vcr_cassettes/MOD02QKM_150.yaml') - def test_get_limit_some(self): - api = GranuleQuery() - granules = api.short_name("MOD02QKM").get() - self.assertEqual(len(granules), 150) + def test_get(self): + """ + If we execute a get with no arguments then we expect + to get the maximum no. of granules from a single CMR call (2000) + in a single request + """ + with my_vcr.use_cassette('fixtures/vcr_cassettes/MOD02QKM_2000.yaml') as cass: + api = GranuleQuery() + granules = api.short_name("MOD02QKM").get() + self.assertEqual(len(granules), 2000) + # Assert all 2000 qranule results have unique granule ids + assert_unique_granules_from_results(granules) + # Assert that we performed one search results query + self.assertEqual(len(cass), 1) + + def test_get_all_less_than_2k(self): + """ + If we execute a get_all then we expect multiple + invocations of a cmr granule search and + to not fetch back more results than we ask for + """ + with my_vcr.use_cassette('fixtures/vcr_cassettes/TELLUS_GRAC.yaml') as cass: + api = GranuleQuery() + granules = api.short_name("TELLUS_GRAC_L3_JPL_RL06_LND_v04").get_all() + self.assertEqual(len(granules), 163) + # Assert all 163 qranule results have unique granule ids + assert_unique_granules_from_results(granules) + # Assert that we performed a hits query and one search results query + self.assertEqual(len(cass), 2) - def test_get_all_mutiple_pages(self): - api = GranuleQuery() - granules = api.short_name("MOD02QKM").get_all() - self.assertEqual(len(granules), 3050) - - def test_get_all_mutiple_pages(self): - api = GranuleQuery() - granules = api.short_name("MOD02QKM").get_all() - self.assertEqual(len(granules), 3050)''' + def test_get_all_more_than_2k(self): + """ + If we execute a get_all then we expect multiple + invocations of a cmr granule search and + to not fetch back more results than we ask for + """ + with my_vcr.use_cassette('fixtures/vcr_cassettes/CYGNSS.yaml') as cass: + api = GranuleQuery() + granules = api.short_name("CYGNSS_NOAA_L2_SWSP_25KM_V1.2").get_all() + self.assertEqual(len(granules), 2285) + # Assert all 2285 qranule results have unique granule ids + assert_unique_granules_from_results(granules) + # Assert that we performed a hits query and two search results queries + self.assertEqual(len(cass), 3) \ No newline at end of file From bcee206ddb745e761d0351276d80d8f908d221b1 Mon Sep 17 00:00:00 2001 From: Doug Newman Date: Mon, 14 Aug 2023 13:24:21 -0400 Subject: [PATCH 3/9] More comments --- tests/test_multiple_queries.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_multiple_queries.py b/tests/test_multiple_queries.py index 685cfdb..fec6bff 100644 --- a/tests/test_multiple_queries.py +++ b/tests/test_multiple_queries.py @@ -16,6 +16,11 @@ ) def assert_unique_granules_from_results(granules): + """ + When we invoke a search request multiple times we want to ensure that we don't + get the same results back. This is a one shot test as the results are preserved + by VCR but still useful. + """ granule_ids = [] for granule in granules: granule_ids.append(granule['title']) From 3de704b1f0697fa4e22830a7fbd6699320f764cf Mon Sep 17 00:00:00 2001 From: Doug Newman Date: Mon, 14 Aug 2023 13:37:39 -0400 Subject: [PATCH 4/9] Updated dependencies --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f88a85c..8e29b2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,9 +18,6 @@ requests = "^2.26.0" [tool.poetry.dev-dependencies] flake8 = "^4.0.1" pytest = "^6.2.5" - -[tool.poetry.group.dev.dependencies] -requests-mock = "^1.11.0" vcrpy = "^5.1.0" [build-system] From d0275e4b7a7ad7693fe4c6194c3e72336109bd5c Mon Sep 17 00:00:00 2001 From: Doug Newman Date: Mon, 14 Aug 2023 13:41:06 -0400 Subject: [PATCH 5/9] Refatored fixture location --- .DS_Store | Bin 6148 -> 6148 bytes {fixtures/vcr_cassettes => tests}/.DS_Store | Bin 6148 -> 6148 bytes {fixtures => tests/fixtures}/.DS_Store | Bin 6148 -> 6148 bytes .../fixtures}/vcr_cassettes/CYGNSS.yaml | 0 .../fixtures}/vcr_cassettes/MOD02QKM.yaml | 0 .../vcr_cassettes/MOD02QKM_2000.yaml | 0 .../fixtures}/vcr_cassettes/TELLUS_GRAC.yaml | 0 tests/test_multiple_queries.py | 8 ++++---- 8 files changed, 4 insertions(+), 4 deletions(-) rename {fixtures/vcr_cassettes => tests}/.DS_Store (89%) rename {fixtures => tests/fixtures}/.DS_Store (95%) rename {fixtures => tests/fixtures}/vcr_cassettes/CYGNSS.yaml (100%) rename {fixtures => tests/fixtures}/vcr_cassettes/MOD02QKM.yaml (100%) rename {fixtures => tests/fixtures}/vcr_cassettes/MOD02QKM_2000.yaml (100%) rename {fixtures => tests/fixtures}/vcr_cassettes/TELLUS_GRAC.yaml (100%) diff --git a/.DS_Store b/.DS_Store index 42353c9b8dc38a563800c793cde7ddbca289359e..cada8c39c7a09595857773e89083418cee984413 100644 GIT binary patch delta 151 zcmZoMXfc=&$yuCKUR;orlbgD z7z@=Us;do+Ep!x&Oe|`36sj$a40IGsjLm9mIXOg?^{s>AvvYFu^1CJB)qF;Q%yo}wrd0|Nsi1A_nqLn%WMLn=dYQh9N~#>C}}^&lAzhBSsu zh6;ufWZ9&g{3M{>TVI+#IpN8TsYGC5a`a#ZHMu(I8$( zetu38jGdSimYG@}FCgNapI4HYnU`7w){vQ!3RDsko|%`DU+$D&nwL^v4AvYBk>TLv z;EWfLs;)LPG%(XqFf}x))lsN6G&VKTQ7|z!tF7ha5LMQ<4vNpt$<52}0Xh!|7=a!G z170W%qk4f146l_17v<&T=cNPXK>9YO{9~DHAi}bl8|W)wcx_Dl&ODi4M3EH~E(((k MMWiAjHu~2NHo+1YW5HK<@2y7N){>HLdfq56xW_AvK4xj>{$am(+{342+ UKzW7)kiy9(Jj$D6L{=~Z01@sEU;qFB diff --git a/fixtures/.DS_Store b/tests/fixtures/.DS_Store similarity index 95% rename from fixtures/.DS_Store rename to tests/fixtures/.DS_Store index 024acee5bf7ab531b6e7fb33dbdaa76c4da89bee..d82549e3e01dde529d640ed60908b40800df39a4 100644 GIT binary patch delta 71 zcmZoMXffDe%EY*9vKdpMrc`ycp`n49j)JM7QLT Date: Mon, 14 Aug 2023 13:43:12 -0400 Subject: [PATCH 6/9] Remove DSStore files --- tests/fixtures/.DS_Store | Bin 6148 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 tests/fixtures/.DS_Store diff --git a/tests/fixtures/.DS_Store b/tests/fixtures/.DS_Store deleted file mode 100644 index d82549e3e01dde529d640ed60908b40800df39a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK%}T>S5T0$TrWBzE1@W}twP54l#Y?FA0!H+pQj;cVFlMDm?V%L%0Qy2ch|lB9 z?nWt9FM>#!DKp>h?949vZQ02Jfar}P7oZIQ4k}@-iRKHTand=dSr4Jma||GW9Dgws zbJ6Vhj||Y+t-=!wUM_|Jni4751D#4#0vZmYFV{d!3#Ei z*yEEw%uq7r%*ON09AKtrF8 zG~OU2!8W}m2&F~OVrdXZP=rZEG^xTqF@#A+zqE0l#nPZj2ccKSdF;x= zgYXQpWd@jmSqAE++ot+|^8NdNHi>)805h;q42Z_Df84_@+1fg{IjXf1^#+xM;!1-b kDcI1Z7-OjvZ=h;HzoZ7DXR$Ph9u)o%&@`}N2L6 Date: Mon, 14 Aug 2023 13:43:19 -0400 Subject: [PATCH 7/9] Remove ds store files --- tests/.DS_Store | Bin 6148 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 tests/.DS_Store diff --git a/tests/.DS_Store b/tests/.DS_Store deleted file mode 100644 index b383b21c0c1d05a4669b78db0f5b2e8e5bef2665..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK%}T>S5T0$TZV{me1@W}twP4e#7cZge3mDOZN=-=BV9ZLBTA>v30Qy2ch|lB9 z?p7>S@Fb!$F#FBUPnP`>cCr81OL9pr%ZuPfkAfmBhIuy} zoYCx9>ol6$VRVx8N4>`CzRrp;$@&9Rki>mVIX_LZSdY4Tn8mrN4QxQxWxdzf7>_-# zwcAuXUVGA1W3RK*ZmR9h?qpJzYnxkpN4?whF4IqzPJv&Zkrjtict&GxXAi+3OLcaQ zv1#2jpOG102AF~W!+<*h#cK}qh6~}FHuP-ueA7Hf`)0um`kmA c9n}c>6&Z-W!_p#pQ20l{(7*#T@S_a80g3lb#Q*>R From c221ce1d9195e2ed1e2dbf8c073fe3ffc1c4595d Mon Sep 17 00:00:00 2001 From: Doug Newman Date: Fri, 18 Aug 2023 08:18:55 -0400 Subject: [PATCH 8/9] Removed CMR-Search-After header once get method completes --- cmr/queries.py | 6 +++++- tests/fixtures/.DS_Store | Bin 0 -> 8196 bytes tests/test_multiple_queries.py | 6 +++++- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 tests/fixtures/.DS_Store diff --git a/cmr/queries.py b/cmr/queries.py index 46d9a65..e23696c 100644 --- a/cmr/queries.py +++ b/cmr/queries.py @@ -75,7 +75,11 @@ def get(self, limit=2000): if page_size > len(response.json()['feed']['entry']) or len(results) >= limit: more_results = False - + + # This header is transient. We need to get rid of it before we do another different query + if self.headers['cmr-search-after']: + del self.headers['cmr-search-after'] + return results def hits(self): diff --git a/tests/fixtures/.DS_Store b/tests/fixtures/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..1acb0da18d919d4877f3756d60f5aaf3194ddb63 GIT binary patch literal 8196 zcmeHMU2GIp6u#fI&^uFprcj`REG|}&(gKC0SOjtVgOoq3w6vxCth2iVoiLp#JF{Dm z5UZju5~GPmO_XTVNAWM3Xw>K%QR9OlL^RO{6CV_f4<;tQ=(%%e!IeUy4~D?p&An&N zIrq%WIrlsF?%8FGp|hA@$yftpj8hj>uccvJ{ zI0A75;t0eMh$9e3;A)5fo!O%C%bfdC8;@}W;s{)q5fJ-BlDeSjh)zfvZXGm)B>+)T z0)&mOsSXHjk`YZubVAb5l%lg zsWrTY*Ydr6Bi?vlU8vc1-1S8dt2_kvZs$ zy53{bD?~d3xl`Fr5PJm|9lz8iU96g0cJZsSi>g*@3=9rw8GTlX{OBDEY|r%vtb$K8 zqtEoo-_1GCy{BLa{b0^>ileTd(d%-ilPfxAV0Ac7pMAgO4+YlYKwJ&`ULoiTCl1+U zD`Xj6FZ$LFiwx|N)lFu8eWe!+>ZxgS5;rYwZf(2$&hDP=_nw(PW2UZYv+D;-wr^)0 zYnSQgEH`hv2X>Cz`Cw$2g6RhKe%mUjYF(Aq@0z35nYr^CbYs4;pll`QUbN+UBOfYe z?L$R7I3k~6Bp0b%e`img-fO#;7kA8u8pBB5!uf6??z@rP%1~;#@zy zPds~@=?A@ImP?Nhy-OOKINv2S9r-*7^?40*H*YbFVSmIdSiR$fLj6n5L;2k#4;PX& z;yxSmcHk8v<&IFP+iuAwh|`iwq;t+2(@W+0gh6dgw@OZ>W6WU7>Coz7dnkd%*b#Pu zy}(Yg*Vw!4BX*j7!OpR-**EN4_B}h#eq(>28dFdMjylZ84OoDMXvS)^VGTO572B{K zz39hY>_Y}7_QS&%4#CF}JcNgF9FO90JcDQP9G=IkIEB~o2HwIa_!OVvbDYI@_z~yv zGk(GEimGTztx~Vtsw`2Ol%+~aX;(Vrt1IRF8LkAL(nVgW?lLMs3Z)_$oo5@Ll9R$KLl~O?vtR;n6E8J>?D+1hcD)o z%&~ID=`{k+Twv9>QCpPIr%)b9_GWEyLZ3=GAlarwb3#`r^(4DI(W>cHlvrwLn@Tim zI=EzR)7ENwHKmwj*J~Rzor$cMd`F@yp^Jq1572#+z0W=-=$;|y{=j}>zp_6Gt~1a; zP+g2AXhI8?5nS7`7VEGc8?gyJ*h1j##{dSg3&Y64BIu65MgakeDB%G-NB};LM+m-8 z;7L4%r*RT5;w8L{S3)4ajSv0-%`KJC#D`agW~r~>I-YxgW|hHRd4ubltCH?Fi28ry z<$wRbzJnBdA4lLCj{vH>`?|#`f4NOkAzhOCebhx0^Clz>O=u8Pggh+AiC*}_kgk)F eE*;ScNl8QPfBzvMKL7viSJ(Lb50QFp4SxZFRy|t) literal 0 HcmV?d00001 diff --git a/tests/test_multiple_queries.py b/tests/test_multiple_queries.py index 1669efd..8159d4b 100644 --- a/tests/test_multiple_queries.py +++ b/tests/test_multiple_queries.py @@ -45,6 +45,7 @@ def test_get_more_than_2000(self): assert_unique_granules_from_results(granules) # Assert that we performed two search results queries self.assertEqual(len(cass), 2) + self.assertIsNone(api.headers.get('cmr-search-after')) def test_get(self): """ @@ -60,6 +61,7 @@ def test_get(self): assert_unique_granules_from_results(granules) # Assert that we performed one search results query self.assertEqual(len(cass), 1) + self.assertIsNone(api.headers.get('cmr-search-after')) def test_get_all_less_than_2k(self): """ @@ -75,6 +77,7 @@ def test_get_all_less_than_2k(self): assert_unique_granules_from_results(granules) # Assert that we performed a hits query and one search results query self.assertEqual(len(cass), 2) + self.assertIsNone(api.headers.get('cmr-search-after')) def test_get_all_more_than_2k(self): """ @@ -89,4 +92,5 @@ def test_get_all_more_than_2k(self): # Assert all 2285 qranule results have unique granule ids assert_unique_granules_from_results(granules) # Assert that we performed a hits query and two search results queries - self.assertEqual(len(cass), 3) \ No newline at end of file + self.assertEqual(len(cass), 3) + self.assertIsNone(api.headers.get('cmr-search-after')) \ No newline at end of file From 4f84ce1d8ee74e411eb7a7f098e2d10fa53aebdf Mon Sep 17 00:00:00 2001 From: Doug Newman Date: Mon, 21 Aug 2023 13:52:50 -0400 Subject: [PATCH 9/9] Removed unnecessary reference to requests_mock --- tests/test_multiple_queries.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_multiple_queries.py b/tests/test_multiple_queries.py index 8159d4b..5022d40 100644 --- a/tests/test_multiple_queries.py +++ b/tests/test_multiple_queries.py @@ -1,5 +1,4 @@ import unittest -import requests_mock import json import vcr